We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2c3c81 commit c6740b0Copy full SHA for c6740b0
.github/workflows/publish.yml
@@ -29,6 +29,6 @@ jobs:
29
${{ runner.os }}-node-
30
- run: npm i
31
- run: npm run compile
32
- - run: npm publish
+ - run: npm run publish
33
env:
34
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -38,7 +38,8 @@
38
"prepare": "npm run compile",
39
"pretest": "npm run compile",
40
"test": "jest --testPathIgnorePatterns \"build/\" --runInBand --verbose",
41
- "posttest": "npm run lint"
+ "posttest": "npm run lint",
42
+ "publish": "npm version patch --force && npm publish"
43
},
44
"devDependencies": {
45
"@babel/plugin-proposal-class-properties": "^7.18.6",
0 commit comments