-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.common.js
79 lines (77 loc) · 1.63 KB
/
webpack.common.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
import path from "path";
import { fileURLToPath } from "url";
import CopyPlugin from "copy-webpack-plugin";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const build_dir = path.resolve(__dirname, "build");
export default {
entry: {
"lecture-player": [
"./src/index.ts",
"./node_modules/@shoelace-style/shoelace/dist/themes/light.css",
"./node_modules/@shoelace-style/shoelace/dist/themes/dark.css"
]
},
devServer: {
contentBase: "./build"
},
plugins: [
new CopyPlugin({
patterns: [
// Copy pdf-worker to build.
{
from: path.resolve(__dirname, "node_modules/pdfjs-dist/build/pdf.worker.min.mjs"),
to: path.resolve(__dirname, `${build_dir}/js/pdf.worker.js`)
},
// Copy icons to build/icons.
{
from: path.resolve(__dirname, "src/icons"),
to: path.resolve(__dirname, `${build_dir}/icons`)
}
]
}),
new MiniCssExtractPlugin({
filename: "css/[name].css",
})
],
output: {
filename: "js/[name].js",
path: build_dir,
clean: false,
library: {
name: "lecture-player",
type: "umd",
},
iife: true
},
resolve: {
extensions: [".ts", ".js"]
},
module: {
rules: [
{
test: /\.css$/,
loader: "lit-css-loader"
},
// Copy css theme files.
{
test: /[\\/]node_modules[\\/].*\.css$/,
use: [MiniCssExtractPlugin.loader, "css-loader"],
},
{
test: /\.(ts|js)x?$/,
exclude: /node_modules/,
use: [
"babel-loader",
]
},
{
test: /locales/,
loader: "@alienfast/i18next-loader",
options: {
basenameAsNamespace: true
}
}
]
}
};