File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 44 * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
55 */
66
7- const devConfig = require ( './node_modules/@labkey/build/webpack/dev.config' )
7+ const devConfig = require ( '.. /node_modules/@labkey/build/webpack/dev.config' )
88
9- const entryPoints = require ( './src/client/entryPoints' ) ;
10- const constants = require ( './node_modules/@labkey/build/webpack/constants' ) ;
9+ const entryPoints = require ( '.. /src/client/entryPoints' ) ;
10+ const constants = require ( '.. /node_modules/@labkey/build/webpack/constants' ) ;
1111const webpack = require ( 'webpack' ) ;
1212const NodePolyfillPlugin = require ( "node-polyfill-webpack-plugin" )
1313
Original file line number Diff line number Diff line change 44 * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
55 */
66
7- const prodConfig = require ( './node_modules/@labkey/build/webpack/prod.config' )
7+ const prodConfig = require ( '.. /node_modules/@labkey/build/webpack/prod.config' )
88
9- const entryPoints = require ( './src/client/entryPoints' ) ;
10- const constants = require ( './node_modules/@labkey/build/webpack/constants' ) ;
9+ const entryPoints = require ( '.. /src/client/entryPoints' ) ;
10+ const constants = require ( '.. /node_modules/@labkey/build/webpack/constants' ) ;
1111const webpack = require ( 'webpack' ) ;
1212const NodePolyfillPlugin = require ( "node-polyfill-webpack-plugin" )
1313
Original file line number Diff line number Diff line change 44 * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
55 */
66
7- const watchConfig = require ( './node_modules/@labkey/build/webpack/watch.config' )
7+ const watchConfig = require ( '.. /node_modules/@labkey/build/webpack/watch.config' )
88
9- const entryPoints = require ( './src/client/entryPoints' ) ;
10- const constants = require ( './node_modules/@labkey/build/webpack/constants' ) ;
9+ const entryPoints = require ( '.. /src/client/entryPoints' ) ;
10+ const constants = require ( '.. /node_modules/@labkey/build/webpack/constants' ) ;
1111const webpack = require ( 'webpack' ) ;
1212const NodePolyfillPlugin = require ( "node-polyfill-webpack-plugin" )
1313
Original file line number Diff line number Diff line change 55 "scripts" : {
66 "setup" : " npm ci" ,
77 "build" : " npm run build-dev" ,
8- "start" : " cross-env NODE_ENV=development LK_MODULE_CONTAINER=DiscvrLabKeyModules LK_MODULE=jbrowse webpack-dev-server --config watch.config.js" ,
9- "build-dev" : " npm run clean && cross-env NODE_ENV=development LK_MODULE_CONTAINER=DiscvrLabKeyModules LK_MODULE=jbrowse webpack --config dev.config.js --progress --profile" ,
10- "build-prod" : " npm run clean && cross-env NODE_ENV=production PROD_SOURCE_MAP=source-map LK_MODULE_CONTAINER=DiscvrLabKeyModules LK_MODULE=jbrowse webpack --config prod.config.js --progress --profile --colors" ,
8+ "start" : " cross-env NODE_ENV=development LK_MODULE_CONTAINER=DiscvrLabKeyModules LK_MODULE=jbrowse webpack-dev-server --config config/ watch.config.js" ,
9+ "build-dev" : " npm run clean && cross-env NODE_ENV=development LK_MODULE_CONTAINER=DiscvrLabKeyModules LK_MODULE=jbrowse webpack --config config/ dev.config.js --progress --profile" ,
10+ "build-prod" : " npm run clean && cross-env NODE_ENV=production PROD_SOURCE_MAP=source-map LK_MODULE_CONTAINER=DiscvrLabKeyModules LK_MODULE=jbrowse webpack --config config/ prod.config.js --progress --profile --colors" ,
1111 "clean" : " rimraf resources/web/jbrowse/gen && rimraf resources/views/gen && rimraf resources/views/browser*" ,
1212 "test" : " cross-env NODE_ENV=test jest"
1313 },
You can’t perform that action at this time.
0 commit comments