You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: replace cache-loader with babel-loader's built-in cache (#6142)
It's supposed to have better performance.
See babel/babel-loader#525 (comment)
Besides, this improves webpack 5 compatibilities as cache-loader is now
deprecated
Copy file name to clipboardExpand all lines: docs/core-plugins/babel.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ module.exports = {
20
20
21
21
## Caching
22
22
23
-
[cache-loader](https://github.com/webpack-contrib/cache-loader) is enabled by default and cache is stored in `<projectRoot>/node_modules/.cache/babel-loader`.
23
+
Cache options of [babel-loader](https://github.com/babel/babel-loader#options) is enabled by default and cache is stored in `<projectRoot>/node_modules/.cache/babel-loader`.
Copy file name to clipboardExpand all lines: packages/@vue/cli-plugin-babel/README.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ module.exports = {
20
20
21
21
## Caching
22
22
23
-
[cache-loader](https://github.com/webpack-contrib/cache-loader) is enabled by default and cache is stored in `<projectRoot>/node_modules/.cache/babel-loader`.
23
+
Cache options of [babel-loader](https://github.com/babel/babel-loader#options) is enabled by default and cache is stored in `<projectRoot>/node_modules/.cache/babel-loader`.
0 commit comments