-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.partial.ts
More file actions
59 lines (55 loc) · 1.28 KB
/
Copy pathwebpack.partial.ts
File metadata and controls
59 lines (55 loc) · 1.28 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
59
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const entries = {
'index' : path.join(__dirname , 'src/index') ,
'react-hooks' : path.join(__dirname , 'src/react-hooks/index') ,
'type-helpers' : path.join(__dirname , 'src/type-helpers/index') ,
};
export default {
entry : entries ,
output : {
path : path.join(__dirname , 'dist') ,
filename( pathData ){
const name = pathData.chunk.name;
if( !name ) {
console.log(pathData.chunk);
}
if( Object.keys(entries).includes(name) ) {
return {
'index' : 'esm/index.js' ,
'react-hooks' : 'esm/react-hooks/index.js' ,
'type-helpers' : 'esm/type-helpers/index.js' ,
}[name];
} else {
return `[name].js`;
}
} ,
} ,
plugins:[
new CopyPlugin({
patterns : [
{
from : path.join(__dirname,'publish'),
to :path.join(__dirname,'dist')
}
]
})
],
externals : [
"reaxes" ,
"reaxes-react" ,
"reaxes-vue2" ,
"reaxes-react" ,
"reaxes-vue3" ,
"reaxes-utils" ,
"reaxes-toolkit" ,
"reaxel-storage",
"react",
"vue"
] ,
} as Configuration;
import * as path from "node:path";
import { fileURLToPath } from 'url';
import { dirname } from 'path';
import CopyPlugin from 'copy-webpack-plugin'
import { Configuration } from 'webpack';