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 a84c6f9 commit 8153c64Copy full SHA for 8153c64
.github/workflows/release.yaml
@@ -15,6 +15,7 @@ jobs:
15
registry-url: https://registry.npmjs.org/
16
- run: |
17
npm install
18
- npm run release
+ npm run build
19
+ npm publish
20
env:
21
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
package.json
@@ -6,9 +6,7 @@
6
"scripts": {
7
"start": "babel-node index.js",
8
"commit": "git-cz",
9
- "prerelease": "babel src -d build",
10
- "release": "standard-version",
11
- "release:beta": "standard-version -p beta",
+ "build": "babel src -d build",
12
"lint": "eslint .",
13
"test": "jest"
14
},
0 commit comments