From 6dcf1106285e066a6dc8dff74ef809fc24301097 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sat, 1 Feb 2020 16:12:41 +0100 Subject: [PATCH] enable babel-loader cache (#10083) this speeds up repeated webpack builds by around 20%. It will use the default cache directory `node_modules/.cache/babel-loader`. Also added cache invalidation to workaround https://github.com/babel/babel-loader/issues/690 --- Makefile | 2 +- webpack.config.js | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b3c54dd95..360939321 100644 --- a/Makefile +++ b/Makefile @@ -509,7 +509,7 @@ $(FOMANTIC_DEST_DIR): semantic.json web_src/fomantic/theme.config.less | node_mo .PHONY: webpack webpack: node-check $(WEBPACK_DEST) -$(WEBPACK_DEST): $(WEBPACK_SOURCES) | node_modules +$(WEBPACK_DEST): $(WEBPACK_SOURCES) webpack.config.js | node_modules npx eslint web_src/js webpack.config.js npx stylelint web_src/less npx webpack --hide-modules --display-entrypoints=false diff --git a/webpack.config.js b/webpack.config.js index 14e5846dd..57f624aa1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -7,6 +7,7 @@ const PostCSSPresetEnv = require('postcss-preset-env'); const PostCSSSafeParser = require('postcss-safe-parser'); const TerserPlugin = require('terser-webpack-plugin'); const VueLoaderPlugin = require('vue-loader/lib/plugin'); +const { statSync } = require('fs'); const { resolve, parse } = require('path'); const { SourceMapDevToolPlugin } = require('webpack'); @@ -84,6 +85,13 @@ module.exports = { { loader: 'babel-loader', options: { + cacheDirectory: true, + cacheCompression: false, + cacheIdentifier: [ + resolve(__dirname, 'package.json'), + resolve(__dirname, 'package-lock.json'), + resolve(__dirname, 'webpack.config.js'), + ].map((path) => statSync(path).mtime.getTime()).join(':'), presets: [ [ '@babel/preset-env',