forked from DSpace-Labs/angular2-ui-prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
112 lines (104 loc) · 2.56 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
var webpackMerge = require('webpack-merge');
var webpack = require('webpack');
var path = require('path');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var defaultConfig = {
module: {
noParse: [
path.join(__dirname, 'zone.js', 'dist'),
path.join(__dirname, 'angular2', 'bundles')
]
},
context: __dirname,
resolve: {
root: path.join(__dirname, '/src')
},
output: {
publicPath: path.resolve(__dirname),
filename: 'bundle.js'
}
}
var commonConfig = {
resolve: {
extensions: ['', '.css', '.scss', '.js', '.ts']
},
module: {
loaders: [
{
test: /\.ts$/,
loader: 'ts-loader'
}
]
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(true),
new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery" })
]
};
var clientConfig = {
cache: true,
entry: {
"app": "./src/app/boot",
"styles": [
"./resources/styles/main.scss"
],
"bootstrap": [
"bootstrap-sass!./resources/bootstrap-sass.config.js"
]
},
output: {
path: __dirname,
filename: "./dist/[name].bundle.js"
},
devtool: 'source-map',
module: {
loaders: [
{
test: /\.scss$/,
loader: 'style!css!sass'
},
{
test: /bootstrap\/js\//,
loader: 'imports?jQuery=jquery'
},
{
test: /\.woff($|\?)|\.woff2($|\?)|\.ttf($|\?)|\.eot($|\?)|\.svg($|\?)/,
loader: 'url-loader'
}
]
},
plugins: [
new CopyWebpackPlugin([{
from: path.join(__dirname, 'resources', 'i18n'),
to: path.join(__dirname, 'dist', 'i18n')
}])
]
};
var serverConfig = {
target: 'node',
entry: './src/server',
output: {
path: path.join(__dirname, 'dist', 'server')
},
externals: checkNodeImport,
node: {
global: true,
__dirname: true,
__filename: true,
process: true,
Buffer: true
}
};
module.exports = [
// Client
webpackMerge({}, defaultConfig, commonConfig, clientConfig),
// Server
webpackMerge({}, defaultConfig, commonConfig, serverConfig)
];
// Helpers
function checkNodeImport(context, request, cb) {
if (!path.isAbsolute(request) && request.charAt(0) !== '.') {
cb(null, 'commonjs ' + request); return;
}
cb();
}