File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
"version" : " 2.0.0" ,
6
6
"author" :
" Viktor Hubert <[email protected] >" ,
7
7
"engines" : {
8
- "node" : " >=4 "
8
+ "node" : " >=6 "
9
9
},
10
10
"main" : " dist/bundle.cjs.js" ,
11
- "module" : " dist/bundle.es .js" ,
11
+ "module" : " dist/bundle.esm .js" ,
12
12
"scripts" : {
13
13
"test" : " jest && yarn run build && yarn run size" ,
14
14
"prebuild" : " flow check" ,
15
- "build" : " rollup -c rollup/rollup.es .js && rollup -c rollup/rollup.cjs.js && rollup -c rollup/rollup.umd.js" ,
15
+ "build" : " rollup -c rollup/rollup.esm .js && rollup -c rollup/rollup.cjs.js && rollup -c rollup/rollup.umd.js" ,
16
16
"size" : " size-limit"
17
17
},
18
18
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import sharedConfig from "./rollup.shared";
4
4
5
5
sharedConfig . output = [
6
6
{
7
- file : __dirname + "/../dist/bundle.es .js" ,
7
+ file : __dirname + "/../dist/bundle.esm .js" ,
8
8
format : "es"
9
9
}
10
10
] ;
You can’t perform that action at this time.
0 commit comments