-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
94 lines (81 loc) · 2.53 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
const fs = require('fs');
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
// a custom plugin so there arent 1000 bundles when working on frontend
class TinyTidyPlugin {
constructor(options) {
this.path;
this.firstRun = true;
this.scrubbing = false;
this.options = options;
}
apply = (compiler) => {
if (compiler.options.mode !== "development") return;
this.path = compiler.options.output.path;
compiler.hooks.done.tapAsync("TinyTidyPlugin", this.removeOldFiles);
};
removeOldFiles = ({ compilation }, done) => {
if (this.firstRun) {
this.firstRun = false;
return done();
}
const builtFiles = Object.keys(compilation.assets);
this.backgroundScrub(builtFiles);
done();
};
backgroundScrub = (builtFiles) => {
this.srubbing = true;
const existingFiles = fs.readdirSync(this.path);
let currentBundle;
for (let i = 0; i < builtFiles.length; i++) {
if (builtFiles[i].startsWith("bundle")) currentBundle = builtFiles[i];
}
for (let i = 0; i < existingFiles.length; i++) {
const file = existingFiles[i];
if (!file.startsWith("bundle")) continue;
if (!file.endsWith("js")) continue;
if (file === currentBundle) continue;
fs.unlinkSync(this.path + "/" + file);
}
this.scrubbing = false;
};
};
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.[contenthash].js'
},
mode: process.env.MODE || "development",
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader'
},
// this will apply to both plain `.js` files
// AND `<script>` blocks in `.vue` files
{
test: /\.js$/,
loader: 'babel-loader'
},
// this will apply to both plain `.css` files
// AND `<style>` blocks in `.vue` files
{
test: /\.css$/,
use: [
'vue-style-loader',
'css-loader'
]
}
]
},
plugins: [
// make sure to include the plugin for the magic
new VueLoaderPlugin(),
new HtmlWebpackPlugin({
template: './src/index.html'
}),
new TinyTidyPlugin(),
]
};