Skip to content

Commit

Permalink
publish tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kremalicious committed Jun 11, 2020
1 parent e91ac7a commit 9349d07
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
}
24 changes: 19 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"name": "@oceanprotocol/art",
"version": "2.2.0",
"description": "Ocean Protocol's assets for community distribution.",
"description": "Ocean Protocol's brand assets for community distribution.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
"release-major": "./node_modules/release-it/bin/release-it.js major --src.tagName='v%s' --github.release --npm.publish --non-interactive"
"release": "release-it",
"changelog": "auto-changelog -p"
},
"repository": {
"type": "git",
Expand All @@ -20,6 +19,21 @@
},
"homepage": "https://oceanprotocol.com",
"devDependencies": {
"release-it": "^8.0.1"
"auto-changelog": "^2.0.0",
"release-it": "^13.6.2"
},
"release-it": {
"hooks": {
"after:bump": "npm run changelog"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}

0 comments on commit 9349d07

Please sign in to comment.