File tree 3 files changed +1
-4
lines changed
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 28
28
not linted. (` /node_modules/ ` etc are still excluded, of course.)
29
29
* (feature) Add option to polyfill core node packages in webpack.
30
30
* (bc) Remove ` disableChunkSplitting() ` , chunk splitting is now always disabled. Use code splitting instead.
31
- * (improvement) Enable ` cache-loader ` , which might speed up the webpack build.
32
31
* (improvement) Bump required node version to 12.
33
32
* (internal) Bumped all dependencies.
34
33
* (improvement) Allow ` ++ ` in JS/TS code.
Original file line number Diff line number Diff line change 27
27
"@becklyn/typescript-error-formatter" : " ^1.0.4" ,
28
28
"babel-eslint" : " ^10.0.3" ,
29
29
"babel-loader" : " ^8.0.6" ,
30
- "cache-loader" : " ^4.1.0" ,
31
30
"clean-webpack-plugin" : " ^3.0.0" ,
32
31
"core-js" : " ^3.6.4" ,
33
32
"duplicate-package-checker-webpack-plugin" : " ^3.0.0" ,
Original file line number Diff line number Diff line change @@ -429,7 +429,6 @@ export class Kaba
429
429
{
430
430
test : / \. t s x ? $ / ,
431
431
use : [
432
- 'cache-loader' ,
433
432
babelLoader ,
434
433
{
435
434
loader : "ts-loader" ,
@@ -446,7 +445,7 @@ export class Kaba
446
445
// Babel
447
446
{
448
447
test : / \. m ? j s x ? $ / ,
449
- use : [ 'cache-loader' , babelLoader ] ,
448
+ use : [ babelLoader ] ,
450
449
include : ( path : string ) => isAllowedPath ( path , this . ignoredNpmPackages ) ,
451
450
} ,
452
451
You can’t perform that action at this time.
0 commit comments