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