-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwebpack.mix.js
63 lines (44 loc) · 1.41 KB
/
webpack.mix.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
const mix = require('laravel-mix');
const CompressionPlugin = require('compression-webpack-plugin');
const PROD = (process.env.NODE_ENV && process.env.NODE_ENV === 'production');
const fs = require('fs');
const packagejson = JSON.parse(fs.readFileSync('./package.json'));
require('laravel-mix-angular-templatecache');
mix.disableNotifications();
mix.extend('replace', function (webpackConfig, ...args) {
let content = fs.readFileSync(args[0]).toString();
args[1].forEach(function (item) {
content = content.replace(item[0], item[1]);
});
fs.writeFileSync(args[0], content);
return webpackConfig;
});
mix.webpackConfig({
plugins: [
PROD ? new CompressionPlugin({
//asset: "[path].gz[query]",
algorithm: "gzip",
test: /\.js$|\.ts$|\.css$|\.html$|\.svg$/,
threshold: 10240,
minRatio: 0.8
}) : () => { }
],
});
mix.before(() => {
// angular template cache
mix.cacheTemplates('./src/views/**/*.html', {
root: '/views',
module: 'angularSuperGallery',
outputFilename: './src/asg-templates.js',
}).replace('./src/asg-templates.js', [
[/button\\/g, 'button/'],
[/\\views\\/g, '/views/'],
]);
});
// compile typesript and scss
mix.ts('./src/asg.ts', './dist/angular-super-gallery.min.js')
.sass('./src/asg.scss', './dist/angular-super-gallery.min.css');
// update version
mix.replace('./src/asg-service.ts', [
[/version.*"\d+\.\d+\.\d+"/, 'version = "' + packagejson.version + '"']
]);