Replace bash prepare script with node version
This commit is contained in:
parent
d66d26b4f6
commit
37dd3fe2b8
3 changed files with 13 additions and 6 deletions
|
@ -101,7 +101,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "yarn serve",
|
"start": "yarn serve",
|
||||||
"serve": "webpack serve --config webpack.dev.js",
|
"serve": "webpack serve --config webpack.dev.js",
|
||||||
"prepare": "./scripts/prepare.sh",
|
"prepare": "node ./scripts/prepare.js",
|
||||||
"build:development": "webpack --config webpack.dev.js",
|
"build:development": "webpack --config webpack.dev.js",
|
||||||
"build:production": "webpack --config webpack.prod.js",
|
"build:production": "webpack --config webpack.prod.js",
|
||||||
"lint": "eslint \"src/\"",
|
"lint": "eslint \"src/\"",
|
||||||
|
|
12
scripts/prepare.js
Executable file
12
scripts/prepare.js
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
const { execSync } = require('child_process');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The npm `prepare` script needs to run a build to support installing
|
||||||
|
* a package from git repositories (this is dumb but a limitation of how
|
||||||
|
* npm behaves). We don't want to run these in CI though because
|
||||||
|
* building is slow so this script will skip the build when the
|
||||||
|
* `SKIP_PREPARE` environment variable has been set.
|
||||||
|
*/
|
||||||
|
if (!process.env.SKIP_PREPARE) {
|
||||||
|
execSync('webpack --config webpack.prod.js', { stdio: 'inherit' });
|
||||||
|
}
|
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
if [ -z "${SKIP_PREPARE}" ]; then
|
|
||||||
webpack --config webpack.prod.js
|
|
||||||
fi
|
|
Loading…
Add table
Add a link
Reference in a new issue