-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.config.js
61 lines (60 loc) · 1.75 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
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
const MarkdownIt = require('markdown-it'),
md = new MarkdownIt();
const fs = require('fs');
module.exports = [
{
entry: "./src/v1/index.ts",
mode: "development",
devServer: {
watchFiles: ["src/**/*"],
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
"Access-Control-Allow-Headers": "X-Requested-With, content-type, Authorization"
}
},
module: {
rules: [
{
test: /\.tsx?$/,
use: "ts-loader",
exclude: /node_modules/,
},
{
test: /\.css$/i,
include: path.resolve(__dirname, "src"),
use: ["style-loader", "css-loader", "postcss-loader"],
},
],
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
},
plugins: [
new CopyPlugin({
patterns: [
{
from: "src/v1/index.html", to: "v1/index.html",
transform(content) {
const READMERAW = fs.readFileSync('./README.md', 'utf-8');
const README = md.render(READMERAW);
return `${content}`.replace('{content}', README)
}
},
{ from: "src/v1/plugins", to: "v1/plugins" },
{ from: "src/v1/wip", to: "v1/wip" },
{ from: "src/assets", to: "assets" },
{ from: "src/styles", to: "styles" },
{ from: "src/index.html", to: "index.html" },
],
}),
],
output: {
filename: "v1/nomie-plugin.js",
path: path.resolve(__dirname, "dist"),
clean: true,
},
},
];