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 7653507 commit aa1ede7Copy full SHA for aa1ede7
package.json
@@ -21,6 +21,9 @@
21
"build:esm": "tsc --project ./esm.json && echo '{\\n \"type\": \"module\"\\n}' > dist/esm/package.json",
22
"build:cjs": "tsc --project ./commonjs.json && echo '{\\n \"type\": \"commonjs\"\\n}' > dist/commonjs/package.json",
23
"dev": "cd example; npm run dev",
24
+ "alpha": "rm -rf dist && npm run build && npm run test && npm version prerelease --preid alpha && npm publish --tag alpha && git push --tags",
25
+ "release": "rm -rf dist && npm run build && npm run test && npm version patch && npm publish && git push --tags",
26
+ "test": "cd example && npm run lint",
27
"typecheck": "tsc --noEmit",
28
"prepare": "npm run build"
29
},
0 commit comments