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