diff --git a/.npmrc b/.npmrc index 43c97e7..eacea13 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,3 @@ package-lock=false +allow-same-version=true +message=v%s diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..03a962f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). diff --git a/package.json b/package.json index b9845c9..289a38b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "get-dep-tree", - "version": "0.0.0", + "version": "1.0.0", "description": "Use npm's Arborist to get a dependency tree for a package.", "main": "index.js", "exports": { @@ -12,7 +12,9 @@ "pretest": "npm run lint", "tests-only": "nyc tape 'test/**/*.js'", "test": "npm run tests-only", - "posttest": "aud --production" + "posttest": "aud --production", + "version": "auto-changelog && git add CHANGELOG.md", + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" }, "repository": { "type": "git", @@ -50,9 +52,18 @@ "devDependencies": { "@ljharb/eslint-config": "^20.1.0", "aud": "^1.1.5", + "auto-changelog": "^2.3.0", "eslint": "^8.6.0", "nyc": "^15.1.0", "sinon-sandbox": "^2.0.6", "tape": "^5.4.0" + }, + "auto-changelog": { + "output": "CHANGELOG.md", + "template": "keepachangelog", + "unreleased": false, + "commitLimit": false, + "backfillLimit": false, + "hideCredit": true } }