mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
Replace bash dependency with nodejs script (#1238)
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
3887de4309
commit
41e493c8bc
2 changed files with 11 additions and 1 deletions
10
check-build-env-vars.js
Normal file
10
check-build-env-vars.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!process.env.REACT_APP_BACKEND_BASE_URL) {
|
||||||
|
console.error("==============\nREACT_APP_BACKEND_BASE_URL not set.\n Use this task only if you want to create a production build with a real backend. Otherwise use build:mock\n==============");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
|
@ -114,7 +114,7 @@
|
||||||
"serve:build": "http-server build/ -s -p 3001 -P \"http://localhost:3001?\"",
|
"serve:build": "http-server build/ -s -p 3001 -P \"http://localhost:3001?\"",
|
||||||
"build:test": "cross-env REACT_APP_TEST_MODE=true craco build",
|
"build:test": "cross-env REACT_APP_TEST_MODE=true craco build",
|
||||||
"build:mock": "cross-env craco build",
|
"build:mock": "cross-env craco build",
|
||||||
"build:production": "bash -c \"[[ -v REACT_APP_BACKEND_BASE_URL ]]\" && (cross-env craco build) || (echo -e '\n==============\nREACT_APP_BACKEND_BASE_URL not set.\nUse this task only if you want to create a production build with a real backend. Otherwise use build:mock\n==============\n'; exit 1)",
|
"build:production": "(cross-env node check-build-env-vars.js) && (cross-env craco build)",
|
||||||
"analyze": "cross-env ANALYZE=true yarn build:mock",
|
"analyze": "cross-env ANALYZE=true yarn build:mock",
|
||||||
"test": "craco test",
|
"test": "craco test",
|
||||||
"lint": "eslint --max-warnings=0 --ext .ts,.tsx src",
|
"lint": "eslint --max-warnings=0 --ext .ts,.tsx src",
|
||||||
|
|
Loading…
Reference in a new issue