[AAI] Remove Robby Maharajh & Harish Kajur as committers
[aai/sparky-fe.git] / webpack.devConfig.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 'use strict';
22
23 var path = require('path');
24 var webpack = require('webpack');
25 var devPort = process.env.PORT || 8001;
26 var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
27
28 module.exports = {
29   devtool: 'source-map',
30   entry: {
31     bundle: [
32       'app/main.app.jsx',
33       'webpack/hot/only-dev-server'
34     ]
35   },
36   externals: [
37       {
38         xmlhttprequest: 'XMLHttpRequest'
39       }
40    ],
41   output: {
42     path: path.join(__dirname, 'dist/aai'),
43     publicPath: 'https://localhost:8001/',
44     filename: '[name].js',
45     sourceMapFilename: '[name].js.map'
46   },
47   resolve: {
48     root: [path.resolve('.')],
49     alias: {
50       app: 'src/app',
51       'generic-components': 'src/generic-components',
52       utils: 'src/utils',
53       images: 'resources/images'
54     },
55     extensions: ["", ".webpack.js", ".web.js", ".js", ".json", ".jsx"]
56   },
57   devServer: {
58     port: devPort,
59     disableHostCheck: true,
60     historyApiFallback: true,
61     publicPath: ``,
62     contentBase: path.join(__dirname, 'dist'),
63     hot: true,
64     progress: true,
65     inline: true,
66     debug: true,
67     https: true,
68     stats: {
69       colors: true
70     }
71   },
72   module: {
73     loaders: [
74       {test: /\.(js|jsx)$/, loaders: ['babel-loader'], exclude: /node_modules/},
75       {test: /\.(css|scss)$/, loaders: ['style-loader', 'css-loader', 'sass-loader']},
76       // required for font icons
77       {test: /\.(woff|woff2|ttf|eot|otf)(\?.*)?$/, loader: 'url-loader?limit=163840&mimetype=application/font-woff&name=[name].[ext]'},
78       {test: /\.(png|jpg|svg)(\?.*)?$/, loader: 'url-loader?limit=163840&name=[name].[ext]'},
79       {test: /\.json$/, loaders: ['json']},
80       { test: /\.xml$/, loader: 'xml-loader' }
81     ]
82   },
83   eslint: {
84     configFile: './.eslintrc',
85     failOnError: false,
86     emitError: false,
87     emitWarning: true
88   },
89   plugins: [
90     //new BundleAnalyzerPlugin(),
91     new webpack.DefinePlugin({
92       DEBUG: true
93     }),
94
95     new webpack.HotModuleReplacementPlugin()
96   ]
97 };