Skip to content

Commit

Permalink
Fix prod testing
Browse files Browse the repository at this point in the history
  • Loading branch information
opyh committed Jun 23, 2024
1 parent 9b33425 commit 58655c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@
"build:esm": "tsc -m es2020 --target esnext --outDir dist/esm && echo '{ \"type\": \"module\" }' > dist/esm/package.json",
"build:cjs": "tsc -m commonjs --target esnext --outDir dist/cjs && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
"start": "tsc -w & rollup -c rollup.config.ts -w",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:prod": "NODE_OPTIONS=--experimental-vm-modules npm run test -- --coverage --no-cache",
"test:prod": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --no-cache --testPathIgnorePatterns node_modules,src",
"docs:build": "typedoc src --options typedoc.json --out dist/docs/typescript --json dist/typedoc-output.json && npx esrun ./tools/generate-overview.ts",
"docs:install": "docker pull squidfunk/mkdocs-material",
"docs:deploy": "(docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material build) && gh-pages --dist site",
Expand Down

0 comments on commit 58655c7

Please sign in to comment.