@kaliber/build 0.0.120 → 0.0.121
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/build.js +4 -2
- package/package.json +1 -1
package/lib/build.js
CHANGED
@@ -284,9 +284,11 @@ module.exports = function build({ watch }) {
|
|
284
284
|
},
|
285
285
|
|
286
286
|
{
|
287
|
-
|
287
|
+
resource: {
|
288
|
+
test: /\.css$/,
|
289
|
+
or: [{ exclude: /node_modules/ }, ...compileWithBabel],
|
290
|
+
},
|
288
291
|
loaders: ['json-loader', cssLoader],
|
289
|
-
exclude: /node_modules/
|
290
292
|
},
|
291
293
|
|
292
294
|
{
|
package/package.json
CHANGED