diff --git a/package.json b/package.json index 58f0f01..edc1fb1 100644 --- a/package.json +++ b/package.json @@ -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",