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