File tree 5 files changed +11
-40
lines changed
5 files changed +11
-40
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,9 @@ function generateHTML(fileName) {
34
34
} ) ;
35
35
}
36
36
37
- export default function BuildDocs ( { useCache , dev} ) {
37
+ export default function BuildDocs ( { dev} ) {
38
38
console . log ( 'Building: ' . cyan + 'docs' . green + ( dev ? ' [DEV]' . grey : '' ) ) ;
39
39
40
- const useCacheOption = `--use-cache=${ Boolean ( useCache ) } ` ;
41
40
const devOption = dev ? '' : '-p' ;
42
41
43
42
return exec ( `rimraf ${ docsBuilt } ` )
@@ -46,7 +45,7 @@ export default function BuildDocs({useCache, dev}) {
46
45
let pagesGenerators = Root . getPages ( ) . map ( generateHTML ) ;
47
46
48
47
return Promise . all ( pagesGenerators . concat ( [
49
- exec ( `webpack --config webpack.docs.js ${ useCacheOption } --bail ${ devOption } ` ) ,
48
+ exec ( `webpack --config webpack.docs.js --bail ${ devOption } ` ) ,
50
49
copy ( license , docsBuilt ) ,
51
50
copy ( readmeSrc , readmeDest )
52
51
] ) ) ;
Original file line number Diff line number Diff line change @@ -14,12 +14,6 @@ const argv = yargs
14
14
demand : false ,
15
15
default : false
16
16
} )
17
- . option ( 'use-cache' , {
18
- type : 'boolean' ,
19
- demand : false ,
20
- default : true ,
21
- describe : 'Use Babel cache when running webpack'
22
- } )
23
17
. option ( 'lib-only' , {
24
18
demand : false ,
25
19
default : false ,
Original file line number Diff line number Diff line change @@ -6,22 +6,21 @@ import { copy } from './fs-utils';
6
6
import { distRoot , bowerRoot } from './constants' ;
7
7
import { exec } from './exec' ;
8
8
9
- function forkAndBuildDocs ( { verbose, useCache } ) {
9
+ function forkAndBuildDocs ( { verbose} ) {
10
10
console . log ( 'Building: ' . cyan + 'docs' . green ) ;
11
11
12
12
const verboseOption = verbose ? '--verbose' : '' ;
13
- const useCacheOption = `--use-cache=${ Boolean ( useCache ) } ` ;
14
13
15
- return exec ( `npm run docs-build -- ${ verboseOption } ${ useCacheOption } ` )
14
+ return exec ( `npm run docs-build -- ${ verboseOption } ` )
16
15
. then ( ( ) => console . log ( 'Built: ' . cyan + 'docs' . green ) ) ;
17
16
}
18
17
19
- export default function Build ( { verbose , useCache } = { } ) {
18
+ export default function Build ( options ) {
20
19
return Promise . all ( [
21
20
lib ( ) ,
22
21
bower ( ) ,
23
- dist ( { useCache } ) ,
24
- forkAndBuildDocs ( { verbose , useCache } )
22
+ dist ( ) ,
23
+ forkAndBuildDocs ( options )
25
24
] )
26
25
. then ( ( ) => copy ( distRoot , bowerRoot ) ) ;
27
26
}
Original file line number Diff line number Diff line change 1
1
import { exec } from '../exec' ;
2
2
import { distRoot } from '../constants' ;
3
3
4
- export default function BuildDistributable ( { useCache } ) {
4
+ export default function BuildDistributable ( ) {
5
5
console . log ( 'Building: ' . cyan + 'distributable' . green ) ;
6
6
7
- const useCacheOption = `--use-cache=${ Boolean ( useCache ) } ` ;
8
-
9
7
return exec ( `rimraf ${ distRoot } ` )
10
8
. then ( ( ) => Promise . all ( [
11
- exec ( `webpack ${ useCacheOption } --bail` ) ,
12
- exec ( `webpack ${ useCacheOption } --bail -p` )
9
+ exec ( `webpack --bail` ) ,
10
+ exec ( `webpack --bail -p` )
13
11
] ) )
14
12
. then ( ( ) => console . log ( 'Built: ' . cyan + 'distributable' . green ) ) ;
15
13
}
Original file line number Diff line number Diff line change @@ -6,32 +6,13 @@ import yargs from 'yargs';
6
6
export const options = yargs
7
7
. alias ( 'p' , 'optimize-minimize' )
8
8
. alias ( 'd' , 'debug' )
9
- . option ( 'use-cache' , {
10
- type : 'boolean' ,
11
- default : true
12
- } )
13
9
. option ( 'port' , {
14
10
default : '8080' ,
15
11
type : 'string'
16
12
} )
17
13
. argv ;
18
14
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
- }
15
+ export const jsLoader = 'babel?cacheDirectory' ;
35
16
36
17
const baseConfig = {
37
18
entry : undefined ,
You can’t perform that action at this time.
0 commit comments