Move Scss file to a separate scss folder #184
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi Peter, this is a simple pull request that would cause a breaking change but would be better for the Sass community that uses this package.
I'm using your plugin by importing the Scss file into my main stylesheet. According to my team's syntax standards, we do not include the
.scss
extenstion when importing a file.This means when I use the following code...
...I get the following error...
Sass is looking for a file called
foundation-datepicker.scss
and it's finding multiple results (foundation-datepicker.scss
andfoundation-datepicker.css
)This PR moves
foundation-datepicker.scss
into a separate directory/scss/foundationdatepicker.scss
.This will fix the Sass error and make it easier for Sass users to find the
scss
file (it felt weird in thecss
folder).I hope you like the update. My team is currently disabling our linter to explicitly add the
.scss
extension to the sass file, but we hope to see this project updated so our code is clean again.Thanks for the awesome plugin!