Skip to content

Commit 01c547f

Browse files
author
Jimmy Jia
committed
[fixed] Do not use Babel cache for release build
Fixes react-bootstrap#840
1 parent 737a672 commit 01c547f

File tree

6 files changed

+49
-27
lines changed

6 files changed

+49
-27
lines changed

docs/build.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,19 @@ function generateHTML(fileName) {
3232
});
3333
}
3434

35-
export default function BuildDocs({ dev }) {
35+
export default function BuildDocs({useCache, dev}) {
3636
console.log('Building: '.cyan + 'docs'.green + (dev ? ' [DEV]'.grey : ''));
3737

38+
const useCacheOption = `--use-cache=${Boolean(useCache)}`;
39+
const devOption = dev ? '' : '-p';
40+
3841
return exec(`rimraf ${docsBuilt}`)
3942
.then(() => fsp.mkdir(docsBuilt))
4043
.then(() => {
4144
let pagesGenerators = Root.getPages().map(generateHTML);
4245

4346
return Promise.all(pagesGenerators.concat([
44-
exec(`webpack --config webpack.docs.js ${dev ? '' : '-p '}--bail`),
47+
exec(`webpack --config webpack.docs.js ${useCacheOption} --bail ${devOption}`),
4548
copy(license, docsBuilt),
4649
copy(readmeSrc, readmeDest)
4750
]));

tools/build-cli.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,17 @@ import { setExecOptions } from './exec';
88
import yargs from 'yargs';
99

1010
const argv = yargs
11+
.help('h')
1112
.option('docs-only', {
1213
demand: false,
1314
default: false
1415
})
16+
.option('use-cache', {
17+
type: 'boolean',
18+
demand: false,
19+
default: true,
20+
describe: 'Use Babel cache when running webpack'
21+
})
1522
.option('verbose', {
1623
demand: false,
1724
default: false,
@@ -26,7 +33,7 @@ const argv = yargs
2633

2734
setExecOptions(argv);
2835

29-
let buildProcess = argv.docsOnly ? docs(argv) : build();
36+
let buildProcess = argv.docsOnly ? docs(argv) : build(argv);
3037

3138
buildProcess
3239
.catch(err => {

tools/build.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,22 @@ import { copy } from './fs-utils';
66
import { distRoot, bowerRoot } from './constants';
77
import { exec } from './exec';
88

9-
function forkAndBuildDocs(verbose) {
9+
function forkAndBuildDocs({verbose, useCache}) {
1010
console.log('Building: '.cyan + 'docs'.green);
1111

12-
let options = verbose ? ' -- --verbose' : '';
12+
const verboseOption = verbose ? '--verbose' : '';
13+
const useCacheOption = `--use-cache=${Boolean(useCache)}`;
1314

14-
return exec(`npm run docs-build${options}`)
15+
return exec(`npm run docs-build -- ${verboseOption} ${useCacheOption}`)
1516
.then(() => console.log('Built: '.cyan + 'docs'.green));
1617
}
1718

18-
export default function Build(verbose) {
19+
export default function Build({verbose, useCache} = {}) {
1920
return Promise.all([
2021
lib(),
2122
bower(),
22-
dist(),
23-
forkAndBuildDocs(verbose)
23+
dist({useCache}),
24+
forkAndBuildDocs({verbose, useCache})
2425
])
2526
.then(() => copy(distRoot, bowerRoot));
2627
}

tools/dist/build.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import { exec } from '../exec';
22
import { distRoot } from '../constants';
33

4-
export default function BuildDistributable() {
4+
export default function BuildDistributable({useCache}) {
55
console.log('Building: '.cyan + 'distributable'.green);
66

7+
const useCacheOption = `--use-cache=${Boolean(useCache)}`;
8+
79
return exec(`rimraf ${distRoot}`)
810
.then(() => Promise.all([
9-
exec('webpack --bail'),
10-
exec('webpack --bail -p')
11+
exec(`webpack ${useCacheOption} --bail`),
12+
exec(`webpack ${useCacheOption} --bail -p`)
1113
]))
1214
.then(() => console.log('Built: '.cyan + 'distributable'.green));
1315
}

tools/release-scripts/release.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { bowerRepo, bowerRoot, tmpBowerRepo, docsRoot, docsRepo, tmpDocsRepo } f
1515

1616
const yargsConf = yargs
1717
.usage('Usage: $0 <version> [--preid <identifier>]')
18+
.help('h')
1819
.example('$0 minor --preid beta', 'Release with minor version bump with pre-release tag')
1920
.example('$0 major', 'Release with major version bump')
2021
.example('$0 major --dry-run', 'Release dry run with patch version bump')
@@ -32,7 +33,7 @@ const yargsConf = yargs
3233
alias: 'n',
3334
demand: false,
3435
default: false,
35-
describe: 'Execute command in dry run mode. Will not commit, tag, push, or publish anything. Userful for testing.'
36+
describe: 'Execute command in dry run mode. Will not commit, tag, push, or publish anything. Useful for testing.'
3637
})
3738
.option('verbose', {
3839
demand: false,
@@ -66,7 +67,8 @@ preConditions()
6667
.then(v => { version = v; })
6768
.then(() => addChangelog(version))
6869
.then(() => {
69-
return build(argv.verbose)
70+
// useCache implicitly defaults to false here.
71+
return build(argv)
7072
.catch(err => {
7173
console.log('Build failed, reverting version bump'.red);
7274

webpack/base.config.js

+20-13
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,35 @@ import path from 'path';
33
import webpack from 'webpack';
44
import yargs from 'yargs';
55

6-
const babelCache = path.resolve(path.join(__dirname, '../.babel-cache'));
7-
8-
if (!fs.existsSync(babelCache)) {
9-
try {
10-
fs.mkdirSync(babelCache);
11-
} catch (err) {
12-
if (err.code !== 'EEXIST') {
13-
console.error(err.stack);
14-
}
15-
}
16-
}
17-
186
export const options = yargs
197
.alias('p', 'optimize-minimize')
208
.alias('d', 'debug')
9+
.option('use-cache', {
10+
type: 'boolean',
11+
default: true
12+
})
2113
.option('port', {
2214
default: '8080',
2315
type: 'string'
2416
})
2517
.argv;
2618

27-
export const jsLoader = `babel?cacheDirectory=${babelCache}`;
19+
export let jsLoader = 'babel';
20+
if (options.useCache) {
21+
const babelCache = path.resolve(path.join(__dirname, '../.babel-cache'));
22+
23+
if (!fs.existsSync(babelCache)) {
24+
try {
25+
fs.mkdirSync(babelCache);
26+
} catch (err) {
27+
if (err.code !== 'EEXIST') {
28+
console.error(err.stack);
29+
}
30+
}
31+
}
32+
33+
jsLoader += `?cacheDirectory=${babelCache}`;
34+
}
2835

2936
const baseConfig = {
3037
entry: undefined,

0 commit comments

Comments
 (0)