We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc553d9 commit 2ee7fddCopy full SHA for 2ee7fdd
package.json
@@ -61,7 +61,9 @@
61
"prepack": "npm run build && npm run format",
62
"build": "tsc --build --clean && tsc --build && type-coverage",
63
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
64
- "test-api": "node --conditions development test.js",
+ "test-api-prod": "node --conditions production test.js",
65
+ "test-api-dev": "node --conditions development test.js",
66
+ "test-api": "npm run test-api-dev && npm run test-api-prod",
67
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
68
"test": "npm run build && npm run format && npm run test-coverage"
69
},
0 commit comments