Skip to content

Commit 4964307

Browse files
author
Ben Demboski
authored
Merge pull request #14 from bendemboski/release-it
Set up releases using release-it
2 parents 8c7efbf + 2444735 commit 4964307

File tree

4 files changed

+2684
-9
lines changed

4 files changed

+2684
-9
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/node_modules
22
.DS_Store
3+
.env

RELEASE.md

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Release
2+
3+
Releases are mostly automated using
4+
[release-it](https://github.com/release-it/release-it/) and
5+
[lerna-changelog](https://github.com/lerna/lerna-changelog/).
6+
7+
8+
## Preparation
9+
10+
Since the majority of the actual release process is automated, the primary
11+
remaining task prior to releasing is confirming that all pull requests that
12+
have been merged since the last release have been labeled with the appropriate
13+
`lerna-changelog` labels and the titles have been updated to ensure they
14+
represent something that would make sense to our users. Some great information
15+
on why this is important can be found at
16+
[keepachangelog.com](https://keepachangelog.com/en/1.0.0/), but the overall
17+
guiding principle here is that changelogs are for humans, not machines.
18+
19+
When reviewing merged PR's the labels to be used are:
20+
21+
* breaking - Used when the PR is considered a breaking change.
22+
* enhancement - Used when the PR adds a new feature or enhancement.
23+
* bug - Used when the PR fixes a bug included in a previous release.
24+
* documentation - Used when the PR adds or updates documentation.
25+
* internal - Used for internal changes that still require a mention in the
26+
changelog/release notes.
27+
28+
29+
## Release
30+
31+
Once the prep work is completed, the actual release is straight forward:
32+
33+
* First ensure that you have `release-it` installed globally, generally done by
34+
using one of the following commands:
35+
36+
```
37+
# using https://volta.sh
38+
volta install release-it
39+
40+
# using Yarn
41+
yarn global add release-it
42+
43+
# using npm
44+
npm install --global release-it
45+
```
46+
47+
* Second, ensure that you have installed your projects dependencies:
48+
49+
```
50+
yarn install
51+
```
52+
53+
* And last (but not least 😁) do your release. It requires a
54+
[GitHub personal access token](https://github.com/settings/tokens) as
55+
`$GITHUB_AUTH` environment variable. Only "repo" access is needed; no "admin"
56+
or other scopes are required.
57+
58+
```
59+
export GITHUB_AUTH="f941e0..."
60+
release-it
61+
```
62+
63+
[release-it](https://github.com/release-it/release-it/) manages the actual
64+
release process. It will prompt you to to choose the version number after which
65+
you will have the chance to hand tweak the changelog to be used (for the
66+
`CHANGELOG.md` and GitHub release), then `release-it` continues on to tagging,
67+
pushing the tag and commits, etc.

package.json

+36-6
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,54 @@
22
"name": "electron-protocol-serve",
33
"version": "1.3.0",
44
"description": "A file protocol that serves any existing file in a directory and redirects everything not found to index.html.",
5-
"main": "index.js",
65
"repository": "git@github.com:pichfl/electron-protocol-ember.git",
7-
"author": "Florian Pichler <pichfl@ylk.gd>",
86
"license": "MIT",
7+
"author": "Florian Pichler <pichfl@ylk.gd>",
8+
"contributors": [
9+
{
10+
"name": "Florian Pichler",
11+
"url": "http://ylk.gd/"
12+
},
13+
{
14+
"name": "Ben Demboski",
15+
"email": "ben@turbopatent.com",
16+
"url": "https://github.com/bendemboski"
17+
}
18+
],
19+
"main": "index.js",
920
"scripts": {
10-
"test": "npm run mocha && npm run lint",
21+
"lint": "eslint .",
1122
"mocha": "mocha ./tests/**/*-test.js",
12-
"lint": "eslint ."
23+
"test": "npm run mocha && npm run lint"
1324
},
1425
"devDependencies": {
1526
"bluebird": "^3.5.0",
1627
"chai": "^3.5.0",
28+
"dotenv-cli": "^3.1.0",
1729
"eslint": "^3.17.1",
1830
"lodash": "^4.17.4",
1931
"mocha": "^3.2.0",
32+
"mock-require": "^2.0.1",
33+
"release-it": "^13.5.1",
34+
"release-it-lerna-changelog": "^2.1.2",
2035
"sinon": "^1.17.7"
2136
},
22-
"dependencies": {
23-
"mock-require": "^2.0.1"
37+
"publishConfig": {
38+
"registry": "https://registry.npmjs.org"
39+
},
40+
"release-it": {
41+
"plugins": {
42+
"release-it-lerna-changelog": {
43+
"infile": "CHANGELOG.md",
44+
"launchEditor": true
45+
}
46+
},
47+
"git": {
48+
"tagName": "v${version}"
49+
},
50+
"github": {
51+
"release": true,
52+
"tokenRef": "GITHUB_AUTH"
53+
}
2454
}
2555
}

0 commit comments

Comments
 (0)