Skip to content

Commit 2c3c22f

Browse files
authored
4.0.1 (#68)
* deprecate support for node v4,v5. Address security vulnerabilities * remove unnecessary file * #67
1 parent 5b0ac99 commit 2c3c22f

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
22
node_js:
3+
- "11"
34
- "10"
45
- "9"
56
- "8"

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports = (options, callback) => {
2121
}
2222

2323
const content = {
24-
[file.path]: {styles: file.contents.toString()}
24+
[file.path]: {styles: file.contents ? file.contents.toString() : ''}
2525
};
2626
if (!_options.rebaseTo && _options.rebase !== false) {
2727
_options.rebaseTo = path.dirname(file.path);

package-lock.json

Lines changed: 10 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"chai-string": "1.5.0",
5252
"coveralls": "3.0.2",
5353
"express": "4.16.4",
54-
"fancy-log": "1.3.2",
54+
"fancy-log": "1.3.3",
5555
"gulp": "4.0.0",
5656
"gulp-concat": "2.6.1",
5757
"gulp-rename": "1.4.0",

0 commit comments

Comments
 (0)