concurrently can silent fail (#6099)

This commit is contained in:
Jack Kavanagh 2023-07-05 16:06:57 +02:00 committed by GitHub
parent 27bd68efde
commit bd0aaf3717
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 3 additions and 13 deletions

View File

@ -18,7 +18,6 @@
"build": "lerna run build",
"lint": "lerna run lint --stream --no-bail",
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#**/node_modules\"",
"lint:fix": "lerna run lint:fix --stream --no-bail",
"bootstrap": " npx -y check-engine && npm install && lerna bootstrap && lerna run --stream bootstrap",
"version": "lerna version",
"clean": "lerna run clean --stream && lerna clean --yes && rimraf node_modules **/*.tsbuildinfo",

View File

@ -22,16 +22,13 @@
"scripts": {
"bootstrap": "npm run build",
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist && rimraf binaries && rimraf compressed && rimraf artifacts",
"test": "jest --runInBand",
"test:watch": "npm run test -- --watch",
"test:snapshots": "npm run build && npm run test -- -u",
"test:bundled-inso": "cross-env ./bin/inso run test \"Another suite\" -e \"OpenAPI env\" --src src/db/fixtures/nedb",
"build": "concurrently --names source,types \"npm run build:source\" \"npm run build:types\"",
"build:source": "esr esbuild.ts",
"build:types": "tsc --build tsconfig.build.json",
"build": "esr esbuild.ts && tsc --build tsconfig.build.json",
"prebuild:production": "npm run clean",
"build:production": "cross-env NODE_ENV=production npm run build",
"start": "concurrently --names source,types \"ESBUILD_WATCH=true npm run build:source\" \"npm run build:types -- --watch\"",

View File

@ -17,7 +17,6 @@
"scripts": {
"bootstrap": "npm run build",
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist",
"test": "jest",

View File

@ -22,14 +22,11 @@
"build": "npm run build:sr && npm run build:app",
"build:app": "esr --cache ./scripts/build.ts --noErrorTruncation",
"build:main.min.js": "cross-env NODE_ENV=development esr esbuild.main.ts",
"build:sr": "concurrently --names sr:source,sr:types \"npm run build:sr:source\" \"npm run build:sr:types\"",
"build:sr:source": "esr esbuild.sr.ts",
"build:sr:types": "tsc --build tsconfig.build.sr.json",
"build:sr": "esr esbuild.sr.ts && tsc --build tsconfig.build.sr.json",
"bump-version": "esr scripts/bumpVersion.ts",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf build dist src/main.min.js",
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"package": "cross-env USE_HARD_LINKS=false electron-builder build --config electron-builder.config.js",
"start": "concurrently -n dev,app --kill-others \"npm run start:dev-server\" \"npm run start:electron\"",
"start:dev-server": "vite dev",

View File

@ -9,7 +9,6 @@
"scripts": {
"bootstrap": "npm run build",
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist",
"build": "tsc --build tsconfig.build.json",

View File

@ -18,7 +18,7 @@
"prebuild": "npm run clean",
"build:source": "esr esbuild.ts",
"build:types": "tsc --build tsconfig.build.json",
"build": "concurrently --names source,types \"npm run build:source\" \"npm run build:types\"",
"build": "esr esbuild.ts && tsc --build tsconfig.build.json",
"clean": "rimraf dist",
"bootstrap": "npm run build"
},
@ -36,7 +36,6 @@
"@types/styled-components": "^5.1.23",
"@types/url-join": "^4.0.1",
"axios": "^0.21.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.16.0",
"esbuild-runner": "^2.2.1",