Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
feat(sass): enable Sass indented files compilation (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
fathyb authored and danbucholtz committed Dec 16, 2016
1 parent 1222340 commit f632298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/sass.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = {
* the file will be excluded.
*/
includeFiles: [
/\.(scss)$/i
/\.(s(c|a)ss)$/i
],

/**
Expand Down
2 changes: 1 addition & 1 deletion config/watch.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var copyConfig = require('./copy.config');

module.exports = {
srcFiles: {
paths: ['{{SRC}}/**/*.(ts|html|scss)'],
paths: ['{{SRC}}/**/*.(ts|html|s(c|a)ss)'],
options: { ignored: ['{{SRC}}/**/*.spec.ts', '{{SRC}}/**/*.e2e.ts', '**/*.DS_Store'] },
callback: watch.buildUpdate
},
Expand Down

0 comments on commit f632298

Please sign in to comment.