forked from bleenco/ngx-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
128 lines (116 loc) · 3.86 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const { resolve } = require('path');
const AngularCompilerPlugin = require('@ngtools/webpack').AngularCompilerPlugin;
const webpackMerge = require('webpack-merge');
const compression = require('compression-webpack-plugin');
const html = require('html-webpack-plugin');
const copy = require('copy-webpack-plugin');
const extract = require('extract-text-webpack-plugin');
const portfinder = require('portfinder');
module.exports = function (options, webpackOptions) {
options = options || {};
let config = {};
config = webpackMerge({}, config, {
entry: getEntry(options),
resolve: { extensions: ['.ts', '.js', '.json'] },
output: {
path: root('dist-app')
},
module: {
rules: [
{ test: /\.html$/, loader: 'raw-loader' },
{ test: /\.json$/, loader: 'json-loader' },
{ test: /\.(jp?g|png|gif)$/, loader: 'file-loader', options: { hash: 'sha512', digest: 'hex', name: 'images/[hash].[ext]' } },
{ test: /\.(eot|woff2?|svg|ttf|otf)([\?]?.*)$/, loader: 'file-loader', options: { hash: 'sha512', digest: 'hex', name: 'fonts/[hash].[ext]' } }
]
},
plugins: [
new copy([{ context: './src/assets/public', from: '**/*' }])
]
});
config = webpackMerge({}, config, {
output: {
filename: 'js/app.js'
},
target: 'web',
plugins: [
new html({ template: root('src/index.html'), output: root('dist-app') })
],
devServer: {
historyApiFallback: true,
port: 8000,
open: true,
hot: false,
inline: true,
stats: { colors: true, chunks: false },
watchOptions: {
aggregateTimeout: 300,
poll: 1000
}
}
});
if (webpackOptions.p) {
config = webpackMerge({}, config, getProductionPlugins());
config = webpackMerge({}, config, getProdStylesConfig());
} else {
config = webpackMerge({}, config, getDevStylesConfig());
}
config = webpackMerge({}, config, {
module: {
rules: [{ test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/, loader: '@ngtools/webpack' }]
},
plugins: [
new AngularCompilerPlugin({
tsConfigPath: root('src/tsconfig.json'),
entryModule: 'src/app.module#AppModule'
})
]
});
if (options.serve) {
return portfinder.getPortPromise().then(port => {
config.devServer.port = port;
return config;
});
} else {
return Promise.resolve(config);
}
}
function root(path) {
return resolve(__dirname, path);
}
function getEntry(options) {
return { app: root('src/main.ts') };
}
function getProductionPlugins() {
return {
plugins: [
new compression({ asset: "[path].gz[query]", algorithm: "gzip", test: /\.js$|\.html$/, threshold: 10240, minRatio: 0.8 })
]
}
}
function getDevStylesConfig() {
return {
module: {
rules: [
{ test: /\.css$/, use: ['style-loader', 'css-loader'], exclude: [root('src')] },
{ test: /\.css$/, use: ['to-string-loader', 'css-loader'], exclude: [root('src/styles')] },
{ test: /\.scss$|\.sass$/, use: ['style-loader', 'css-loader', 'sass-loader'], include: [root('src/styles') ] },
{ test: /\.scss$|\.sass$/, use: ['to-string-loader', 'css-loader', 'sass-loader'], exclude: [root('src/styles')] },
]
}
};
}
function getProdStylesConfig() {
return {
plugins: [
new extract('css/[name].css')
],
module: {
rules: [
{ test: /\.css$/, use: extract.extract({ fallback: 'style-loader', use: 'css-loader' }), include: [root('src/styles')] },
{ test: /\.css$/, use: ['to-string-loader', 'css-loader'], exclude: [root('src/styles')] },
{ test: /\.scss$|\.sass$/, loader: extract.extract({ fallback: 'style-loader', use: ['css-loader', 'sass-loader'] }), exclude: [root('src/app')] },
{ test: /\.scss$|\.sass$/, use: ['to-string-loader', 'css-loader', 'sass-loader'], exclude: [root('src/styles')] },
]
}
};
}