File tree 4 files changed +6
-13
lines changed
4 files changed +6
-13
lines changed Original file line number Diff line number Diff line change
1
+ export { default as get } from "./lib/get" ;
2
+ export { default as set } from "./lib/set" ;
3
+ export { default as split } from "./lib/split" ;
4
+ export { default as remove } from "./lib/remove" ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
]
18
18
},
19
19
"include" : [
20
+ " index.ts" ,
20
21
" lib/**/*"
21
22
]
22
23
}
Original file line number Diff line number Diff line change @@ -4,9 +4,7 @@ const PRODUCTION = process.env.NODE_ENV === "production";
4
4
5
5
6
6
const config = {
7
- entry : [
8
- "./lib/index.ts"
9
- ] ,
7
+ entry : "./index.ts" ,
10
8
mode : PRODUCTION ? "production" : "development" ,
11
9
context : __dirname ,
12
10
target : "web" ,
@@ -46,12 +44,6 @@ const config = {
46
44
47
45
optimization : {
48
46
minimizer : [ new TerserPlugin ( ) ]
49
- } ,
50
-
51
- devServer : {
52
- port : 8071 ,
53
- disableHostCheck : true ,
54
- host : "0.0.0.0"
55
47
}
56
48
} ;
57
49
You can’t perform that action at this time.
0 commit comments