-
Notifications
You must be signed in to change notification settings - Fork 28
/
webpack.config.dev.mjs
76 lines (72 loc) · 2.33 KB
/
webpack.config.dev.mjs
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
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import CopyPlugin from 'copy-webpack-plugin';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
export default {
mode: 'development',
entry: './index.mjs',
output: {
path: path.resolve(__dirname, 'demo'),
filename: 'cookie-consent.js',
library: {
type: 'var',
name: 'CookieConsentWrapper',
export: 'default',
}
},
module: {
rules: [
{
loader: 'babel-loader',
test: /\.(mjs|js)$/i,
include: [
path.resolve(__dirname, 'src')
],
options: {
presets: [
'@babel/preset-env'
]
},
},
],
},
resolve: {
modules: [
'node_modules',
path.resolve(__dirname, 'src')
],
extensions: ['.mjs', '.js'],
},
plugins: [
new CopyPlugin({
patterns: [
{
from: './src/resources/translations/*.json',
to: path.resolve(__dirname, 'demo', 'translations', '[name][ext]'),
},
{
from: './src/resources/translations/*.json',
to: path.resolve(__dirname, 'demo', 'translations', '[name][ext].js'),
transform: {
transformer(content) {
let json = JSON.parse(content.toString());
json = JSON.stringify(json)
.replace(/\u2028/g, '\\u2028')
.replace(/\u2029/g, '\\u2029');
let code = 'window.cookieConsentWrapperTranslations = window.cookieConsentWrapperTranslations || {};';
code += `window.cookieConsentWrapperTranslations[document.currentScript.src] = ${json};`;
return Promise.resolve(Buffer.from(code, 'utf-8'));
},
},
},
],
}),
],
devServer: {
static: {
directory: path.join(__dirname, 'demo'),
},
compress: true,
port: 3000
}
};