[AAI] Remove Robby Maharajh & Harish Kajur as committers
[aai/sparky-fe.git] / gulpfile.js
index ab115b1..93670fc 100644 (file)
@@ -2,8 +2,8 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017 Amdocs
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * ============LICENSE_END=========================================================
- *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  */
-
 'use strict';
 
 var localPath = require('path');
@@ -46,11 +43,16 @@ let path = {
        scss: './resources/scss/**/*.scss',
        aaiCss: dist + '/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-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})
 
 gulp.task('copy-dev-stuff', callback => {
        return runSequence(['copy-aai-index.html'], callback);
@@ -66,62 +68,19 @@ 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);
 });
 
+
 gulp.task('default', ['dev']);
 
 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: '/services/aai/webapp/',
-                       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': {
-                                       // This has effect on the react lib size
-                                       'NODE_ENV': JSON.stringify('production')
-                               },
-                               DEBUG: false,
-                               DEV: false
-                       }),
-                       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()) {