Skip to content

Commit 0d0db4a

Browse files
committed
avoid run-s
1 parent 118873a commit 0d0db4a

File tree

40 files changed

+1920
-168
lines changed

40 files changed

+1920
-168
lines changed

dev-packages/e2e-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"fix": "yarn g:eslint . --format stylish --fix",
88
"lint": "yarn g:eslint . --format stylish",
99
"lint:ts": "tsc --noEmit",
10-
"test:e2e": "run-s test:validate-configuration test:validate-test-app-setups test:run",
10+
"test:e2e": "yarn test:validate-configuration && yarn test:validate-test-app-setups && yarn test:run",
1111
"test:run": "ts-node run.ts",
1212
"test:validate-configuration": "ts-node validate-verdaccio-configuration.ts",
1313
"test:validate-test-app-setups": "ts-node validate-test-app-setups.ts",
1414
"test:prepare": "ts-node prepare.ts",
15-
"test:validate": "run-s test:validate-configuration test:validate-test-app-setups",
15+
"test:validate": "yarn test:validate-configuration && yarn test:validate-test-app-setups",
1616
"clean": "rimraf tmp node_modules && yarn clean:test-applications && yarn clean:pnpm",
1717
"ci:build-matrix": "ts-node ./lib/getTestMatrix.ts",
1818
"ci:build-matrix-optional": "ts-node ./lib/getTestMatrix.ts --optional=true",

dev-packages/node-integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"module": "build/esm/index.js",
1111
"types": "build/types/src/index.d.ts",
1212
"scripts": {
13-
"build": "run-s build:transpile build:types",
13+
"build": "yarn build:transpile && yarn build:types",
1414
"build:dev": "yarn build",
1515
"build:transpile": "yarn g:rollup -c rollup.npm.config.mjs",
1616
"build:types": "tsc -p tsconfig.types.json",

dev-packages/node-integration-tests/suites/tracing/prisma-orm-v5/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"generate": "prisma generate",
1111
"migrate": "prisma migrate dev -n sentry-test",
12-
"setup": "run-s --silent generate migrate"
12+
"setup": "yarn generate && yarn migrate"
1313
},
1414
"keywords": [],
1515
"author": "",

0 commit comments

Comments
 (0)