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 d02a03d commit 975cb94Copy full SHA for 975cb94
package.json
@@ -60,7 +60,9 @@
60
"prepack": "npm run build && npm run format",
61
"build": "tsc --build --clean && tsc --build && type-coverage",
62
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
63
- "test-api": "node --conditions development test.js",
+ "test-api-prod": "node --conditions production test.js",
64
+ "test-api-dev": "node --conditions development test.js",
65
+ "test-api": "npm run test-api-dev && npm run test-api-prod",
66
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
67
"test": "npm run build && npm run format && npm run test-coverage"
68
},
0 commit comments