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 0756000 commit 19e765eCopy full SHA for 19e765e
.github/workflows/npm-publish.yml
@@ -28,6 +28,7 @@ jobs:
28
node-version: 20
29
registry-url: https://registry.npmjs.org/
30
- run: npm ci
31
+ - run: npm run build
32
- run: npm publish
33
env:
34
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
package.json
@@ -5,11 +5,11 @@
5
"main": "dist/evaluate.js",
6
"module": "dist/evaluate.mjs",
7
"scripts": {
8
- "build": "make build",
9
- "dist": "make dist",
10
- "release": "make release",
11
- "test": "make test"
12
- },
+ "test": "node --trace-uncaught ./test/index.test.js",
+ "build": "npx rollup --config rollup.config.js",
+ "dist": "npm run test && npm run build",
+ "release": "np --no-tests"
+ },
13
"files": [
14
"README.md",
15
"LICENSE",
0 commit comments