forked from ca0v/enterprise-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.dev.js
149 lines (147 loc) · 3.95 KB
/
webpack.config.dev.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
const path = require('path');
const sass = require('sass');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const demoEntry = require('./scripts/webpack-dev-entry');
const handleUpload = require('./scripts/handle-upload');
const htmlExamples = require('./scripts/webpack-html-templates');
const isProduction = process.argv[process.argv.indexOf('--mode') + 1] === 'production';
module.exports = {
entry: demoEntry(),
output: {
path: path.resolve(__dirname, './build/development'),
filename: '[name]/[name].js',
assetModuleFilename: '[path][name][ext]',
clean: true,
publicPath: '/'
},
mode: isProduction ? 'production' : 'development',
optimization: {
splitChunks: {
chunks: 'all'
},
},
resolve: {
extensions: ['.js', '.ts'],
modules: ['node_modules']
},
infrastructureLogging: {
level: 'error' // 'error' is minimal or 'verbose' if more info is needed
},
watchOptions: {
aggregateTimeout: 2000,
poll: 2000
},
devServer: {
hot: false,
liveReload: false,
port: 4300,
devMiddleware: {
writeToDisk: true,
},
static: {
directory: path.resolve(__dirname, `./build/demos/${isProduction ? 'production' : 'development'}`),
watch: false
},
// For fake file upload behavior
setupMiddlewares: handleUpload
},
devtool: 'eval-source-map', // cheap-module-source-map -> original eval-cheap-module-source-map -> works but has csp errors
module: {
rules: [
{
test: /\.ts?$/,
use: [
{
loader: 'esbuild-loader',
options: {
loader: 'ts',
format: 'esm',
target: 'es2022'
},
}
],
exclude: [/node_modules/],
},
{
test: /\.(png|jpe?g|gif|svg|json|css|pdf|csv|xml)$/i,
exclude: [/node_modules/],
type: 'asset/resource',
},
{
test: /\.scss$/,
exclude: [
/node_modules/,
path.resolve(__dirname, 'build')
],
use: [
'sass-to-string',
{
loader: 'sass-loader',
options: {
sassOptions: {
outputStyle: 'expanded'
}
}
}
],
},
{
test: /\.scss$/,
exclude: [
/node_modules/,
path.resolve(__dirname, 'src')
],
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
attributes: {
nonce: '0a59a005' // @TODO needs to match a global nonce instance
}
}
},
'css-loader',
'sass-loader',
]
},
{
test: /\.ya?ml$/,
use: 'yaml-loader'
}
]
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: './src/components/ids-locale/data/*.ts',
to({ absoluteFilename }) {
const baseName = path.basename(absoluteFilename);
const folders = path.dirname(absoluteFilename).split(path.sep);
let filePath = `${folders[folders.length - 2]}/${folders[folders.length - 1]}/${baseName}`;
filePath = filePath
.replace('ids-locale/data/', 'locale-data/')
.replace('ts', 'js');
return filePath;
}
},
{
from: './src/themes/**/*.scss',
to({ absoluteFilename }) {
const baseName = path.basename(absoluteFilename);
return `themes/${baseName.replace('scss', 'css')}`;
},
transform(content, transFormPath) {
const result = sass.renderSync({
file: transFormPath
});
let css = result.css.toString();
css = css.replace(':host {', ':root {');
return css;
}
},
]
}),
].concat(htmlExamples)
};