Skip to content

Commit 1d8adbb

Browse files
authored
Merge pull request finos#1531 from goldensyntax/crossenv
fix: add missing crossenv on a couple of package.json scripts
2 parents 4d93dbd + 6863025 commit 1d8adbb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"cli:js": "node ./packages/git-proxy-cli/dist/index.js",
5252
"client": "vite --config vite.config.ts",
5353
"clientinstall": "npm install --prefix client",
54-
"server": "ALLOWED_ORIGINS=* tsx index.ts",
54+
"server": "cross-env ALLOWED_ORIGINS=* tsx index.ts",
5555
"start": "concurrently \"npm run server\" \"npm run client\"",
5656
"build": "npm run generate-config-types && npm run build-ui && npm run build-ts",
5757
"build-ts": "tsc --project tsconfig.publish.json && node scripts/fix-shebang.js",
@@ -64,7 +64,7 @@
6464
"test:e2e:watch": "vitest --config vitest.config.e2e.ts",
6565
"test-coverage": "cross-env NODE_ENV=test vitest --run --dir ./test --coverage",
6666
"test-coverage-ci": "cross-env NODE_ENV=test vitest --run --dir ./test --coverage.enabled=true --coverage.reporter=lcovonly --coverage.reporter=text",
67-
"test:integration": "NODE_ENV=test vitest --run --config vitest.config.integration.ts",
67+
"test:integration": "cross-env NODE_ENV=test vitest --run --config vitest.config.integration.ts",
6868
"test:watch": "cross-env NODE_ENV=test vitest --dir ./test --watch",
6969
"prepare": "node ./scripts/prepare.js",
7070
"lint": "eslint",

0 commit comments

Comments
 (0)