Skip to content

Commit

Permalink
Should fix windows CI for middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
shanedell committed Mar 27, 2024
1 parent 82478e2 commit c2735f6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@
"compile-src:default": "./compile-proto.sh",
"compile-src:windows": "./compile-proto.bat",
"docgen": "typedoc",
"prepackage": "yarn compile-src && yarn build",
"package": "yarn --cwd out cache clean && yarn --cwd out pack --install-if-needed -f omega-edit-node-client-v${npm_package_version}.tgz",
"install-client-local": "yarn add file://$INIT_CWD/omega-edit-node-client-v${npm_package_version}.tgz",
"prepackage": "yarn compile-src && yarn build && yarn --cwd out cache clean",
"package": "run-script-os",
"package:default": "yarn --cwd out pack --install-if-needed -f omega-edit-node-client-v${npm_package_version}.tgz",
"package:windows": "yarn --cwd out pack --install-if-needed -f omega-edit-node-client-v%npm_package_version%.tgz",
"install-client-local": "run-script-os",
"install-client-local:default": "yarn add file://$INIT_CWD/omega-edit-node-client-v${npm_package_version}.tgz",
"install-client-local:windows": "yarn add file:%INIT_CWD%/omega-edit-node-client-v%npm_package_version%.tgz",
"pretest": "yarn package && yarn install-client-local",
"test:client": "mocha --exit --timeout 100000 --slow 50000 --require ts-node/register --require tests/fixtures.ts --exclude ./tests/specs/server.spec.ts ./tests/specs/*.spec.ts",
"test:lifecycle": "mocha --exit --timeout 50000 --slow 25000 --require ts-node/register ./tests/specs/server.spec.ts",
Expand Down

0 comments on commit c2735f6

Please sign in to comment.