-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathfiles.js
More file actions
58 lines (58 loc) · 1.04 KB
/
files.js
File metadata and controls
58 lines (58 loc) · 1.04 KB
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
export default (target, plugins) => [
{
plugins,
input: './src/parser/index.js',
output: {
esModule: true,
file: `./dist/${target}/parser.js`,
}
},
{
plugins,
input: './src/dom/node.js',
output: {
esModule: true,
file: `./dist/${target}/node.js`,
}
},
{
plugins,
input: './src/dom/cdn.js',
output: {
esModule: true,
file: `./dist/${target}/cdn.js`,
}
},
{
plugins,
input: './src/json/index.js',
output: {
esModule: true,
file: `./dist/${target}/json.js`,
}
},
{
plugins,
input: './src/dom/creator.js',
output: {
esModule: true,
file: `./dist/${target}/creator.js`,
}
},
{
plugins,
input: './src/dom/ish.js',
output: {
esModule: true,
file: `./dist/${target}/ish.js`,
}
},
{
plugins,
input: './src/dom/index.js',
output: {
esModule: true,
file: `./dist/${target}/dom.js`,
}
},
];