Skip to content

Commit

Permalink
chore(release): 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftj18 committed Mar 8, 2021
1 parent 9700e13 commit 3efad7a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## 1.1.0 (2021-03-08)


### Features

* cz ([9700e13](https://github.com/shiftj18/a-nice-lib/commit/9700e13fa52920afcd0889b8d00ee29419cfa0ed))
23 changes: 19 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "a-nice-lib",
"description": "awesome lib",
"version": "1.0.0",
"version": "1.1.0",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
Expand All @@ -12,11 +12,23 @@
"build:lib": "del lib && babel src --out-dir lib",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"commit": "git add . -A && cz"
"commit": "git add . -A && cz",
"push": "npm run commit && git push",
"prepublishOnly": "npm run build",
"sv": "standard-version",
"sv:beta": "standard-version --prerelease beta --skip.changelog --skip.tag",
"push:tag": "git push --follow-tags origin main",
"pub:beta": "npm publish --tag beta",
"pub": "npm publish",
"release:github": "conventional-github-releaser -p angular",
"release:beta": "npm run sv:beta && git push && npm run pub:beta",
"release": "npm run sv && npm run push:tag && npm run pub && npm run release:github"
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.21.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"rollup": "^2.33.3",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
Expand All @@ -31,7 +43,10 @@
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/cli": "^11.0.0",
"commitizen": "^4.2.2",
"husky": "^4.3.0"
"husky": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"conventional-github-releaser": "^3.1.5",
"standard-version": "^9.0.0"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit 3efad7a

Please sign in to comment.