feat: use webpack caching in development (#42286)
* feat: use webpack caching in development This cuts build time for build-workers considerably. * fix: update gitpod config Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
committed by
GitHub
parent
e605800d82
commit
90d2c3b344
@ -51,8 +51,7 @@ tasks:
|
|||||||
init: >
|
init: >
|
||||||
cd ./client &&
|
cd ./client &&
|
||||||
gp sync-await npm-ci &&
|
gp sync-await npm-ci &&
|
||||||
npm run prebuild &&
|
npm run predevelop &&
|
||||||
npm run build:workers &&
|
|
||||||
cd ..
|
cd ..
|
||||||
command: >
|
command: >
|
||||||
gp await-port 3000 &&
|
gp await-port 3000 &&
|
||||||
|
@ -19,12 +19,11 @@
|
|||||||
"author": "freeCodeCamp <team@freecodecamp.org>",
|
"author": "freeCodeCamp <team@freecodecamp.org>",
|
||||||
"main": "none",
|
"main": "none",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"prebuild": "echo 'Client workers building...' && npm run build:workers && echo 'Client workers ready.' && node ../tools/scripts/build/ensure-env.js",
|
"prebuild": "node ../tools/scripts/build/ensure-env.js && npm run build:workers -- --env production",
|
||||||
"build": "node --max_old_space_size=7168 node_modules/gatsby-cli build --prefix-paths",
|
"build": "node --max_old_space_size=7168 node_modules/gatsby-cli build --prefix-paths",
|
||||||
"build:workers": "node --max_old_space_size=7168 node_modules/webpack-cli/bin/cli --env production --config ./webpack-workers.js && echo",
|
"build:workers": "node --max_old_space_size=7168 node_modules/webpack-cli/bin/cli --config ./webpack-workers.js",
|
||||||
"build:workers:debug": "node --max_old_space_size=7168 node_modules/webpack-cli/bin/cli --env production --config ./webpack-workers.js --progress",
|
|
||||||
"clean": "gatsby clean",
|
"clean": "gatsby clean",
|
||||||
"predevelop": "npm run prebuild",
|
"predevelop": "node ../tools/scripts/build/ensure-env.js && npm run build:workers -- --env development",
|
||||||
"develop": "gatsby develop --inspect=9230",
|
"develop": "gatsby develop --inspect=9230",
|
||||||
"format": "npm run format:gatsby && npm run format:src && npm run format:utils",
|
"format": "npm run format:gatsby && npm run format:src && npm run format:utils",
|
||||||
"format:gatsby": "prettier-eslint --write --trailing-comma none --single-quote './gatsby-*.js'",
|
"format:gatsby": "prettier-eslint --write --trailing-comma none --single-quote './gatsby-*.js'",
|
||||||
|
@ -8,6 +8,7 @@ module.exports = (env = {}) => {
|
|||||||
const staticPath = path.join(__dirname, './static/js');
|
const staticPath = path.join(__dirname, './static/js');
|
||||||
const configPath = path.join(__dirname, '../config/client');
|
const configPath = path.join(__dirname, '../config/client');
|
||||||
return {
|
return {
|
||||||
|
cache: __DEV__ ? { type: 'filesystem' } : false,
|
||||||
mode: __DEV__ ? 'development' : 'production',
|
mode: __DEV__ ? 'development' : 'production',
|
||||||
entry: {
|
entry: {
|
||||||
'frame-runner': './src/client/frame-runner.js',
|
'frame-runner': './src/client/frame-runner.js',
|
||||||
|
Reference in New Issue
Block a user