1 parent b2d4f61 commit a9b7998Copy full SHA for a9b7998
2 files changed
.gitignore
@@ -67,3 +67,6 @@ temp
67
# Rush files
68
common/temp/**
69
package-deps.json
70
+
71
+# OS X
72
+.DS_Store
core-build/gulp-core-build-sass/src/SassTask.ts
@@ -136,8 +136,7 @@ export class SassTask extends GulpTask<ISassTaskConfig> {
136
this.buildConfig.rootPath, filePath
137
);
138
this.logWarning(
139
- `${relativeFilePath}: filename should end with either .module.sass ` +
140
- `or .module.scss`
+ `${relativeFilePath}: filename should end with module.sass or module.scss`
141
142
}
143
@@ -287,6 +286,7 @@ export class SassTask extends GulpTask<ISassTaskConfig> {
287
286
} else {
288
this.logVerbose(message);
289
+ key = `'${key}'`;
290
291
styleLines.push(` ${key}: '${value}'`);
292
});
0 commit comments