File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,10 @@ const runWebpackCompiler = (webpackConfig) =>
2929
3030const compile = ( ) => Promise . resolve ( )
3131 . then ( ( ) => logger . info ( 'Starting compiler...' ) )
32- . then ( ( ) => logger . info ( 'Target application environment: ' + chalk . bold ( project . env ) ) )
32+ . then ( ( ) => {
33+ logger . info ( 'Target application environment: ' + chalk . bold ( project . env ) )
34+ logger . info ( `PublicPath is ${ project . publicPath } ` )
35+ } )
3336 . then ( ( ) => runWebpackCompiler ( webpackConfig ) )
3437 . then ( ( stats ) => {
3538 logger . info ( `Copying static assets from ./public to ./${ project . outDir } .` )
Original file line number Diff line number Diff line change 1111 "lint" : " eslint . --ext .js,.jsx" ,
1212 "lint:fix" : " npm run lint -- --fix" ,
1313 "analyze" : " source-map-explorer dist/main.*.js" ,
14- "preDeploy" : " npm run clean && cross-env NODE_ENV=production GENERATE_SOURCEMAP=false PUBLIC_URL=/vortex-react/ npm run compile" ,
14+ "preDeploy" : " npm run clean && cross-env NODE_ENV=production PUBLIC_URL=/vortex-react/ npm run compile" ,
1515 "deploy" : " gh-pages -d dist"
1616 },
1717 "repository" : {
You can’t perform that action at this time.
0 commit comments