Skip to content

Commit a46e054

Browse files
committed
fix for val-loader change
1 parent 5d53032 commit a46e054

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
var fs = require("fs");
22
var path = require("path");
3-
module.exports = fs.readFileSync(path.join(path.dirname(__filename), "stylesheet.css"), "utf-8") + "\n.generated { color: red; }";
3+
module.exports = function() {
4+
return {
5+
code: fs.readFileSync(path.join(path.dirname(__filename), "stylesheet.css"), "utf-8") + "\n.generated { color: red; }"
6+
};
7+
};

0 commit comments

Comments
 (0)