-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
webpack.config.js
113 lines (109 loc) · 2.91 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
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
const ExtensionReloader = require('webpack-extension-reloader');
module.exports = {
// Files to bundle
entry: {
bundle: './extension/devtools/panel/panel.js',
// "create-panel": './extension/devtools/create-panel.js'
background: './extension/backend/background.js',
hook: './extension/backend/hook.ts',
},
// Location to bundle them to
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'build/extension'),
},
// Modules to load non-jacvascript files
module: {
rules: [
// CSS Loader
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
// SASS Loader
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
'style-loader',
// Translates CSS into CommonJS
'css-loader',
// Compiles Sass to CSS
'sass-loader',
],
},
{
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
],
},
plugins: [
// Copies files to 'build' folder without bundling them
new CopyPlugin({
patterns: [
{ from: 'extension/manifest.json', to: '../extension/manifest.json' },
{
from: 'extension/backend/background.js',
to: '../extension/background.js',
},
{
from: 'extension/devtools/devtools-root.html',
to: '../extension/devtools-root.html',
},
{
from: 'extension/devtools/create-panel.js',
to: '../extension/create-panel.js',
},
{
from: 'extension/devtools/panel/panel.html',
to: '../extension/panel.html',
},
// { from: 'extension/backend/hook.js', to: '../extension/hook.js' },
{
from: 'extension/backend/content_script.js',
to: '../extension/content_script.js',
},
{
from: 'extension/devtools/panel/styles.css',
to: '../extension/styles.css',
},
{
from: 'extension/128.png',
to: '../extension/128.png',
},
{
from: 'extension/32.png',
to: '../extension/32.png',
},
{
from: 'extension/16.png',
to: '../extension/16.png',
},
{
from: 'extension/48.png',
to: '../extension/48.png',
},
],
}),
// Enables hot reloading - use npm run dev command
new ExtensionReloader({
manifest: path.resolve(__dirname, './extension/manifest.json'),
entries: {
bundle: 'bundle',
background: '`background',
},
}),
],
optimization: {
minimize: false
},
// devtool: 'cheap-module-source-map', // Needed as to stop Chrome eval errors when using dev server
};