-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathwebpack.config.js
166 lines (159 loc) · 3.78 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import path from 'path';
import CopyPlugin from 'copy-webpack-plugin';
import FileManagerPlugin from 'filemanager-webpack-plugin';
// https://stackoverflow.com/a/62892482/
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const entries = ['leetcode', 'welcome'];
const extensionVersion = process.env.npm_package_version;
// Ignore when copying
const ignore = [
// non-essential
'**/dist/**',
'**/.prettierrc',
'**/.eslintrc',
'**/.env',
'**/assets/.DS_Store',
'**/package*',
'**/webpack*',
'**/README.md',
'**/assets/extension', // web store assets
// webpack compiled files
'**/scripts/leetcode/**',
'**/scripts/welcome.js',
'**/scripts/popup.js',
'**/manifest-chrome.json',
'**/manifest-firefox.json',
// ...entries.map((entry) => `**/${entry}.js`),
];
const folderIgnore = [
'**/chrome/**',
'**/firefox/**',
'**/manifest.json',
]
const manifestTransform = content => {
const filteredContent = content
.toString()
.split('\n')
.filter(str => !str.trimStart().startsWith('//'))
.join('\n');
const manifestData = JSON.parse(filteredContent);
manifestData.version = extensionVersion;
return JSON.stringify(manifestData, null, 2);
};
export default {
entry: {
leetcode: path.resolve(__dirname, 'scripts', 'leetcode', 'leetcode.js'),
welcome: './scripts/welcome.js',
popup: './scripts/popup.js',
},
watchOptions: {
ignored: '**/dist/**',
},
optimization: {
minimize: false,
},
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: '/dist/',
filename: '[name].js',
clean: true,
},
module: {
rules: [
{
test: /\.(test)|(spec)\.js$/,
use: 'ignore-loader',
},
],
},
plugins: [
new CopyPlugin({
patterns: [
{
from: './scripts',
to: './scripts',
globOptions: {
ignore,
},
},
{
from: '*',
globOptions: {
gitignore: true,
ignore,
},
},
{
from: './manifest-chrome.json',
to: './manifest.json',
transform: manifestTransform,
},
{
from: './manifest-chrome.json',
to: './chrome/manifest.json',
transform: manifestTransform,
},
{
from: './manifest-firefox.json',
to: './firefox/manifest.json',
transform: manifestTransform,
},
{
from: 'assets/**',
globOptions: {
ignore: [
...ignore,
'./assets/.DS_Store'
],
},
},
{
from: 'css',
to: 'css',
globOptions: {
ignore,
},
},
],
}),
new FileManagerPlugin({
events: {
onEnd: {
move: [
{
source: './dist/leetcode.js',
destination: './dist/scripts/leetcode.js',
},
{
source: './dist/welcome.js',
destination: './dist/scripts/welcome.js',
},
{
source: './dist/popup.js',
destination: './dist/scripts/popup.js',
},
],
copy: [ // Copy everything to chrome and firefox
{
source: './dist/**',
destination: './dist/chrome',
globOptions: {
ignore: folderIgnore,
},
},
{
source: './dist/**',
destination: './dist/firefox',
globOptions: {
ignore: folderIgnore,
},
},
],
},
},
}),
],
};