Skip to content

Commit b17a7b3

Browse files
committed
[added] release-docs script
- Added a new shell script to launch release-docs - Release docs is pretty much the same are release, but doesn't run global build and tests. Instead it runs the doc-only-build - Split some of the currently existing scripts in order to be able to reuse part of them - Updated CONTRIBUTING.md
1 parent 8a901fd commit b17a7b3

File tree

8 files changed

+130
-17
lines changed

8 files changed

+130
-17
lines changed

MAINTAINING.md

+36-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ style board to track and prioritize issues.
1818

1919
## Merging a pull request
2020

21-
Please, make sure:
21+
Please, make sure:
2222

2323
- Travis build is green
2424
- At least one collaborator (other than you) approves the PR
@@ -84,3 +84,38 @@ guidelines are followed. If it is discovered that we have pushed a release in
8484
violation of semver, than a patch release reverting the offending change should
8585
be pushed as soon as possible to correct the error. The offending change can
8686
then be re-applied and released with the proper version bump.
87+
88+
## Live releasing the documentation
89+
90+
The documentation release script does a similar job to the release script except
91+
that it doesn't publish to npm. It will auto tag the current branch with
92+
a pre "docs" tag, and will push to documentation repository.
93+
94+
For a given tag (lets say `0.22.1`) the first docs tag would be `0.22.1-docs.0`.
95+
In order to tags to be incremental and in order to include all the previous docs
96+
changes, make sure that if a docs tags exists for the current release,
97+
that you start from that tag.
98+
99+
To live patch the documentation in between release follow these steps
100+
101+
0. Find the latest documentation release.
102+
- Check the latest release tag (lets say `v0.22.1`).
103+
- Look for a docs-release tag for that version ex: `v0.22.1-docs.X`
104+
- If one exists, check-it-out. If not checkout the latest release tag.
105+
- *Note: Checkout the tag and not master directly because some live
106+
documentation changes on master that could related to new components
107+
or updates for the upcoming release*
108+
0. Create a new branch from there (for example `git checkout -b docs/v0.22.1`)
109+
0. Cherry-pick the commits you want to include in the live update
110+
`git cherry-pick <commit-ish>...`
111+
0. Use the release-docs script to push and tag to the documentation repository.
112+
113+
*Note: The branch name you checkout to cherry-picked the commit is not enforced.
114+
Though keeping similar names ex: `docs/<version>` helps finding the branch
115+
easily.*
116+
117+
Example usage of release-docs script:
118+
119+
```bash
120+
$ ./tools/release-docs
121+
```

tools/release-docs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env node
2+
/* eslint no-var: 0 */
3+
require('../register-babel');
4+
var path = require('path');
5+
var nodeModulesBin = path.resolve(__dirname, '../node_modules/.bin');
6+
process.env.PATH = nodeModulesBin + ':' + process.env.PATH;
7+
require('./release-docs-scripts/release-docs');
8+
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/* eslint no-process-exit: 0 */
2+
3+
import 'colors';
4+
import { exec } from 'child-process-promise';
5+
6+
import preConditions from '../release-scripts/pre-conditions';
7+
import versionBump from '../release-scripts/version-bump';
8+
import repoRelease from '../release-scripts/repo-release';
9+
import tag from '../release-scripts/tag';
10+
import { lint } from '../release-scripts/test';
11+
12+
import { repoRoot, docsRoot, docsRepo, tmpDocsRepo } from '../release-scripts/constants';
13+
14+
let version;
15+
16+
const versionBumpOptions = {
17+
preid: 'docs'
18+
};
19+
20+
preConditions()
21+
.then(lint)
22+
.then(versionBump(repoRoot, versionBumpOptions))
23+
.then(v => { version = v; })
24+
.then(() => {
25+
return exec('npm run docs-build')
26+
.catch(err => {
27+
console.log('Docs-build failed, reverting version bump'.red);
28+
return exec('git reset HEAD .')
29+
.then(() => exec('git checkout package.json'))
30+
.then(() => console.log('Version bump reverted'.red))
31+
.then(() => {
32+
throw err;
33+
});
34+
});
35+
})
36+
.then(() => exec(`git commit -m "Release v${version}"`))
37+
.then(() => Promise.all([
38+
tag(version),
39+
repoRelease(docsRepo, docsRoot, tmpDocsRepo, version)
40+
]))
41+
.then(() => console.log('Version '.cyan + `v${version}`.green + ' released!'.cyan))
42+
.catch(err => {
43+
if (!err.__handled) {
44+
console.error(err.message.red);
45+
}
46+
47+
process.exit(1);
48+
});

tools/release-scripts/constants.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import path from 'path';
2+
3+
const repoRoot = path.resolve(__dirname, '../../');
4+
5+
const bowerRepo = '[email protected]:react-bootstrap/react-bootstrap-bower.git';
6+
const docsRepo = '[email protected]:react-bootstrap/react-bootstrap.github.io.git';
7+
8+
const bowerRoot = path.join(repoRoot, 'amd/');
9+
const docsRoot = path.join(repoRoot, 'docs-built/');
10+
11+
const tmpBowerRepo = path.join(repoRoot, 'tmp-bower-repo');
12+
const tmpDocsRepo = path.join(repoRoot, 'tmp-docs-repo');
13+
14+
export {
15+
repoRoot,
16+
bowerRepo, bowerRoot, tmpBowerRepo,
17+
docsRoot, docsRepo, tmpDocsRepo,
18+
};

tools/release-scripts/release.js

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/* eslint no-process-exit: 0 */
2-
3-
import path from 'path';
42
import yargs from 'yargs';
53
import { exec } from 'child-process-promise';
64

@@ -12,6 +10,8 @@ import tagAndPublish from './tag-and-publish';
1210
import test from './test';
1311
import build from '../build';
1412

13+
import { repoRoot, bowerRepo, bowerRoot, tmpBowerRepo, docsRoot, docsRepo, tmpDocsRepo } from './constants';
14+
1515
const yargsConf = yargs
1616
.usage('Usage: $0 <version> [--preid <identifier>]')
1717
.example('$0 minor --preid beta', 'Release with minor version bump with pre-release tag')
@@ -30,16 +30,6 @@ const yargsConf = yargs
3030
const argv = yargsConf.argv;
3131

3232
let version;
33-
const repoRoot = path.resolve(__dirname, '../../');
34-
35-
const bowerRepo = '[email protected]:react-bootstrap/react-bootstrap-bower.git';
36-
const docsRepo = '[email protected]:react-bootstrap/react-bootstrap.github.io.git';
37-
38-
const bowerRoot = path.join(repoRoot, 'amd/');
39-
const docsRoot = path.join(repoRoot, 'docs-built/');
40-
41-
const tmpBowerRepo = path.join(repoRoot, 'tmp-bower-repo');
42-
const tmpDocsRepo = path.join(repoRoot, 'tmp-docs-repo');
4333

4434
const versionBumpOptions = {
4535
preid: argv.preid,
+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { exec } from 'child-process-promise';
2+
import tag from './tag';
23

34
export default (version) => {
45
console.log('Releasing: '.cyan + 'npm module'.green);
56

6-
return exec(`git tag -a --message=v${version} v${version}`)
7-
.then(() => exec(`git push`))
8-
.then(() => exec(`git push --tags`))
7+
return tag()
98
.then(() => exec('npm publish'))
109
.then(() => console.log('Released: '.cyan + 'npm module'.green));
1110
};

tools/release-scripts/tag.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { exec } from 'child-process-promise';
2+
3+
export default (version) => {
4+
console.log('Tagging: '.cyan + `v${version}`.green);
5+
6+
return exec(`git tag -a --message=v${version} v${version}`)
7+
.then(() => exec(`git push`))
8+
.then(() => exec(`git push --tags`))
9+
.then(() => console.log('Tagged: '.cyan + `v${version}`.green));
10+
};

tools/release-scripts/test.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,14 @@ function lint() {
1515
.then(() => console.log('Completed: '.cyan + 'eslint'.green));
1616
}
1717

18-
export default function testAndLint() {
18+
function testAndLint() {
1919
return Promise.all([
2020
test(),
2121
lint()
2222
]);
2323
}
24+
25+
export {
26+
testAndLint as default,
27+
lint
28+
};

0 commit comments

Comments
 (0)