Skip to content

Commit

Permalink
publish npm package in @NicTool namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson authored May 29, 2022
1 parent 5a0d329 commit 0a5b0f3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
#### N.N.N - YYYY-MM-DD


#### 1.1.3 - 2022-05-29

- chore: publish npm package in @nictool namespace


#### 1.1.2 - 2022-05-28

- chore(ci): replace .release with submodule
Expand Down
13 changes: 10 additions & 3 deletions DEVELOP.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@

# Release process

in your feature branch: (git checkout -b release-N.N.N)
In your local repo:

- make your changes
- git add .
- .release/do.sh {major|minor|patch}
- `.release/do.sh` {major|minor|patch}
- fill in the blanks in CHANGELOG.md
- .release/push.sh
- `.release/push.sh`

Upon merge to `master`:

- the new version will be published to NPM.
- a GitHub release will be published.
- a release tag will be committed to the repo.

## Clean

`.release/cleanup.sh`

- will switch to the master branch
- delete the release branch
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "dns-resource-record",
"version": "1.1.2",
"name": "@nictool/dns-resource-record",
"version": "1.1.3",
"description": "DNS Resource Records",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npx eslint *.js lib/*.js rr/*.js test/*.js",
"lintfix": "npx eslint --fix *.js lib/*.js rr/*.js test/*.js",
"lint": "npx eslint *.js lib rr test",
"lintfix": "npx eslint --fix *.js lib rr test",
"test": "npx mocha",
"versions": "npx dependency-version-checker check"
},
Expand Down

0 comments on commit 0a5b0f3

Please sign in to comment.