Skip to content

Commit

Permalink
fix: Add semantic release script (#2229)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkyi authored Sep 28, 2020
1 parent 5e3cc13 commit 641e32e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"functional-beta": "cucumber-js --format=progress --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
"functional-dev": "cucumber-js --format=./node_modules/cucumber-pretty --tags '(not @ignore) and (not @prod)' --retry 2 --fail-fast --exit",
"create-test-user": "node -e 'require(\"./features/scripts/create-test-user.js\")()'",
"diagrams": "find ./design/diagrams -type f -name \\*.puml -print0 | xargs -0 -n 1 -I DIAGRAM puml generate DIAGRAM -o DIAGRAM.png"
"diagrams": "find ./design/diagrams -type f -name \\*.puml -print0 | xargs -0 -n 1 -I DIAGRAM puml generate DIAGRAM -o DIAGRAM.png",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"screwdriver-api": "./bin/server"
Expand Down Expand Up @@ -124,6 +125,12 @@
"uuid": "^8.3.0",
"verror": "^1.6.1"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"devDependencies": {
"@octokit/rest": "~18.0.3",
"chai": "~3.5.0",
Expand Down

0 comments on commit 641e32e

Please sign in to comment.