We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ae207 commit 9fec6beCopy full SHA for 9fec6be
package.json
@@ -64,7 +64,9 @@
64
"prepack": "npm run build && npm run format",
65
"build": "tsc --build --clean && tsc --build && type-coverage",
66
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
67
- "test-api": "node --conditions development test/index.js",
+ "test-api-prod": "node --conditions production test/index.js",
68
+ "test-api-dev": "node --conditions development test/index.js",
69
+ "test-api": "npm run test-api-dev && npm run test-api-prod",
70
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
71
"test": "npm run build && npm run format && npm run test-coverage"
72
},
0 commit comments