This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
77 lines (75 loc) · 2.4 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict';
/* jshint esversion: 6 */
/* jshint node: true */
/**
* Cyclone webpack development build.
* Build by running `npm run dev`
* For development use `npm start`
*/
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
module.exports = {
context: __dirname,
entry: {
app: [
"./js/cyclone.js"
],
vendors: [
'angular', 'angular-animate', 'angular-aria', 'angular-messages', 'angular-material', 'angular-clipboard', 'angular-moment',
'firebase', 'firebaseui', 'firebase/auth', 'firebase/database', 'angularfire', 'angular-ui-router', 'angular-loading-bar',
'angulartics', 'randomcolor', 'angulartics-google-analytics', 'angular-logger'
]
},
resolve: {
alias: {
config: __dirname + '/js/config/config.js',
},
},
output: {
path: __dirname + '/public/build/',
filename: "cyclone.js"
},
module: {
rules: [
{
test: /\.less$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ['css-loader', 'less-loader']
})
},
{
test: /\.tpl\.html$/,
use: 'raw-loader',
},
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
}
}
]
},
devtool: 'source-map', // cheap-module-source-map // inline-source-map
plugins: [
new CopyWebpackPlugin([
{ from: 'src', to: __dirname + '/public/' },
]),
new ExtractTextPlugin("cyclone.css"),
new webpack.optimize.CommonsChunkPlugin({ name: 'vendors', filename: 'vendors.js' }),
new BrowserSyncPlugin({
host: 'localhost',
port: 3000,
files: ["public/*.html"],
ghostMode: false, // Don't sync events over different browsers
server: { baseDir: ['public'] }
}),
new webpack.DefinePlugin({
'NODE_ENV': JSON.stringify('development'),
'FIREBASE_DB_INSTANCE': JSON.stringify('v1')
}),
]
};