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 b46fc50 commit 4fe5980Copy full SHA for 4fe5980
package.json
@@ -74,7 +74,9 @@
74
"prepack": "npm run build && npm run format",
75
"build": "tsc --build --clean && tsc --build && type-coverage && micromark-build && esbuild . --bundle --minify | terser | gzip-size --raw",
76
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
77
- "test-api": "node --conditions development test/index.js",
+ "test-api-dev": "node --conditions development test/index.js",
78
+ "test-api-prod": "node --conditions production test/index.js",
79
+ "test-api": "npm run test-api-dev && npm run test-api-prod",
80
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
81
"test": "npm run build && npm run format && npm run test-coverage"
82
},
0 commit comments