Skip to content

Commit

Permalink
docs: Add semantic-release/changelog.
Browse files Browse the repository at this point in the history
It looks like this will maintain our manual changes, too.
  • Loading branch information
manthey committed Jun 10, 2021
1 parent 276e1f5 commit 8587b64
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log
# GeoJS Change Log

## Unreleased
## Version 1.0.2

### Improvements
- The primary map div now has overflow hidden set on it (#1088)
Expand Down
50 changes: 49 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 32 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"vtk.js": "^14.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-istanbul": "^4.1.6",
Expand Down Expand Up @@ -110,14 +111,37 @@
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
["@semantic-release/github", {
"assets": [
{"path": "dist/built/geo.js", "label": "Full JS distribution"},
{"path": "dist/built/geo.min.js", "label": "Minified JS distribution"},
{"path": "dist/built/geo.lean.js", "label": "Lean JS distribution"},
{"path": "dist/built/geo.lean.min.js", "label": "Lean minified JS distribution"}
]
}]
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# GeoJS Change Log"

}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/built/geo.js",
"label": "Full JS distribution (geo.js)"
},
{
"path": "dist/built/geo.min.js",
"label": "Minified JS distribution (geo.min.js)"
},
{
"path": "dist/built/geo.lean.js",
"label": "Lean JS distribution (geo.lean.js)"
},
{
"path": "dist/built/geo.lean.min.js",
"label": "Lean minified JS distribution (geo.lean.min.js)"
}
]
}
]
]
},
"scripts": {
Expand Down

0 comments on commit 8587b64

Please sign in to comment.