Skip to content

Commit

Permalink
Fix broken test on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
esarbanis committed Dec 14, 2017
1 parent c82d140 commit c287643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = function(source, map) {
let { code, map, css, cssMap } = compile(processed.toString(), options);

if (options.emitCss && css) {
const tmpobj = fileSync({ postfix: '.css' });
const tmpobj = fileSync({ mode: 0o666, postfix: '.css' });
css += '\n/*# sourceMappingURL=' + cssMap.toUrl() + '*/';
code = code + `\nrequire('${tmpobj.name}');\n`;

Expand Down

0 comments on commit c287643

Please sign in to comment.