summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorArul.Nambi <arul.nambi@amdocs.com>2018-11-08 13:16:10 -0500
committerArul.Nambi <arul.nambi@amdocs.com>2018-11-08 13:16:28 -0500
commitbac46bcf87413e3a7f688530c3391992654e701b (patch)
tree9b51ef8d55819b9b8c947a7c4210bf99b1e24490 /gulpfile.js
parente513a1ce93b9a70f01b62ca7560dbe52376cc5bd (diff)
Decreasing the initial load time
Issue-ID: AAI-1881 Change-Id: I1638a33096632e4853247e10b13ed5e1a540a4cb Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js50
1 files changed, 6 insertions, 44 deletions
diff --git a/gulpfile.js b/gulpfile.js
index ab62350..fcb485d 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -46,12 +46,16 @@ let path = {
aaiCss: dist + '/css',
saCss: dist + '/editAttributes/css',
war: [dist + '**/*.html', dist + '**/*.js', dist + '**/*.{css,png,svg,eot,ttf,woff,woff2,otf}', dist + '**/*.json', 'webapp/**'],
+ bundleSrc:[dist + '**/*.map'],
wardest: dist
};
taskMaker.defineTask('clean', {taskName: 'clean', src: path.output});
taskMaker.defineTask('copy', {taskName: 'copy-aai-index.html', src: path.aaiIndex, dest: path.output, rename: 'index.html'});
taskMaker.defineTask('copy', {taskName: 'copy-sa-index.html', src: path.saIndex, dest: path.saOutput, rename: 'index.html'});
+taskMaker.defineTask('copy', {taskName: 'copy-sa-index.html', src: path.saIndex, dest: path.saOutput, rename: 'index.html'});
+taskMaker.defineTask('copy', {taskName: 'copy-map-file', src: path.bundleSrc, dest: path.output, rename: 'mappingFile'});
+taskMaker.defineTask('clean', {taskName: 'clean-map-file', src: path.bundleSrc});
/** Uncomment the loine below to generate a .war file with a local build */
// taskMaker.defineTask('compress', {taskName: 'compress-war', src: path.war, filename: appName + '.war', dest: path.wardest})
@@ -69,7 +73,7 @@ gulp.task('dev', callback => {
// Production build
gulp.task('build', callback => {
- return runSequence('clean', ['copy-stuff'], 'prod', callback);
+ return runSequence('clean', ['copy-stuff'], 'prod', 'copy-map-file', 'clean-map-file', callback);
/** Uncomment the loine below to generate a .war file with a local build */
//return runSequence('clean', ['copy-stuff'], 'prod', 'compress-war', callback);
});
@@ -81,48 +85,7 @@ gulp.task('prod', () => {
return new Promise((resolve, reject)=> {
// configure webpack for production
- let webpackProductionConfig = Object.create(webpackConfig);
-
- for (let name in webpackProductionConfig.entry) {
- webpackProductionConfig.entry[name] = webpackProductionConfig.entry[name].filter(path => !path.startsWith('webpack'));
- }
-
- webpackProductionConfig.cache = true;
- webpackProductionConfig.output = {
- path: localPath.join(__dirname, 'dist'),
- publicPath: '',
- filename: '[name].js'
- };
- webpackProductionConfig.resolveLoader = {
- root: [localPath.resolve('.')],
- alias: {
- 'config-json-loader': 'tools/webpack/config-json-loader/index.js'
- }
- };
-
- // remove source maps
- webpackProductionConfig.devtool = undefined;
- webpackProductionConfig.module.preLoaders = webpackProductionConfig.module.preLoaders.filter(preLoader => preLoader.loader != 'source-map-loader');
- webpackProductionConfig.module.loaders.forEach(loader => {
- if (loader.loaders && loader.loaders[0] === 'style') {
- loader.loaders = loader.loaders.map(loaderName => loaderName.replace('?sourceMap', ''));
- }
- });
-
- webpackProductionConfig.module.loaders.push({test: /config.json$/, loaders: ['config-json-loader']});
- webpackProductionConfig.eslint = {
- configFile: './.eslintrc',
- failOnError: true
- };
- webpackProductionConfig.plugins = [
- new webpack.DefinePlugin({
- 'process.env.NODE_ENV': JSON.stringify('production')
- }),
- new webpack.optimize.DedupePlugin(),
- new webpack.optimize.UglifyJsPlugin()
- ];
-
- // run production build
+ let webpackProductionConfig = webpackConfig;
webpack(webpackProductionConfig, function (err, stats) {
console.log('[webpack:build]', stats.toString());
if (err || stats.hasErrors()) {
@@ -138,7 +101,6 @@ gulp.task('prod', () => {
});
-
gulp.task('webpack-dev-server', () => {
let myConfig = Object.create(devWebpackConfig);