Skip to content

Commit

Permalink
Rename sass index
Browse files Browse the repository at this point in the history
Renamed sass index file from "index.scss" to "nice-design-system.scss".
This was because the import statement of import "index" wasn't clear of the source.
  • Loading branch information
ediblecode committed Sep 11, 2017
1 parent 7560638 commit 921d520
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .grunt-tasks/sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module.exports = {
sourceMapContents: true
},
files: {
"temp/stylesheets/nice.css": "src/stylesheets/index.scss",
"temp/stylesheets/nice.min.css": "src/stylesheets/index.scss"
"temp/stylesheets/nice.css": "src/stylesheets/nice-design-system.scss",
"temp/stylesheets/nice.min.css": "src/stylesheets/nice-design-system.scss"
}
},
dist: {
Expand All @@ -19,8 +19,8 @@ module.exports = {
sourceMapContents: true
},
files: {
"dist/stylesheets/nice.css": "src/stylesheets/index.scss",
"dist/stylesheets/nice.min.css": "src/stylesheets/index.scss"
"dist/stylesheets/nice.css": "src/stylesheets/nice-design-system.scss",
"dist/stylesheets/nice.min.css": "src/stylesheets/nice-design-system.scss"
}
}
};
File renamed without changes.

0 comments on commit 921d520

Please sign in to comment.