File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 33
33
* (internal) Bumped all dependencies.
34
34
* (improvement) Allow ` ++ ` in JS/TS code.
35
35
* (improvement) The code is now always compiled per entry file
36
+ * (improvement) Ignore ` .css ` files when compiling webpack. You need to import them manually in your SCSS.
36
37
37
38
38
39
8.1.0
Original file line number Diff line number Diff line change 37
37
"eslint-plugin-react" : " ^7.17.0" ,
38
38
"eslint-plugin-react-hooks" : " ^2.3.0" ,
39
39
"fs-extra" : " ^8.1.0" ,
40
+ "ignore-loader" : " ^0.1.2" ,
40
41
"kaba-babel-preset" : " ^4.1.1" ,
41
42
"kleur" : " ^3.0.3" ,
42
43
"pretty-hrtime" : " ^1.0.3" ,
Original file line number Diff line number Diff line change @@ -382,6 +382,12 @@ export class Kaba
382
382
test : / \. ( s v g | t x t ) $ / ,
383
383
loader : "raw-loader" ,
384
384
} ,
385
+
386
+ // ignore CSS files
387
+ {
388
+ test : / \. c s s $ / ,
389
+ loader : "ignore-loader" ,
390
+ }
385
391
] as webpack . RuleSetRule [ ] ,
386
392
} ,
387
393
You can’t perform that action at this time.
0 commit comments