Skip to content

Commit b74b66f

Browse files
author
Jannik Zschiesche
committed
Remove cache loader
1 parent 7271b4b commit b74b66f

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
not linted. (`/node_modules/` etc are still excluded, of course.)
2929
* (feature) Add option to polyfill core node packages in webpack.
3030
* (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.
3231
* (improvement) Bump required node version to 12.
3332
* (internal) Bumped all dependencies.
3433
* (improvement) Allow `++` in JS/TS code.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"@becklyn/typescript-error-formatter": "^1.0.4",
2828
"babel-eslint": "^10.0.3",
2929
"babel-loader": "^8.0.6",
30-
"cache-loader": "^4.1.0",
3130
"clean-webpack-plugin": "^3.0.0",
3231
"core-js": "^3.6.4",
3332
"duplicate-package-checker-webpack-plugin": "^3.0.0",

src/Kaba.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ export class Kaba
429429
{
430430
test: /\.tsx?$/,
431431
use: [
432-
'cache-loader',
433432
babelLoader,
434433
{
435434
loader: "ts-loader",
@@ -446,7 +445,7 @@ export class Kaba
446445
// Babel
447446
{
448447
test: /\.m?jsx?$/,
449-
use: ['cache-loader', babelLoader],
448+
use: [babelLoader],
450449
include: (path: string) => isAllowedPath(path, this.ignoredNpmPackages),
451450
},
452451

0 commit comments

Comments
 (0)