@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.
Files changed (2) hide show
  1. package/lib/build.js +4 -2
  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
- test: /\.css$/,
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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.120",
2
+ "version": "0.0.121",
3
3
  "name": "@kaliber/build",
4
4
  "description": "Zero configuration, opinionated webpack / react build setup",
5
5
  "scripts": {