File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " tree-crawl" ,
3
- "version" : " 1.0.5 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " Agnostic tree traversal library." ,
5
5
"author" : " Nicolas Gryman <ngryman@gmail.com> (http://ngryman.sh/)" ,
6
6
"license" : " MIT" ,
7
7
"repository" : " ngryman/tree-crawl" ,
8
8
"main" : " dist/tree-crawl.js" ,
9
9
"browser" : " dist/tree-crawl.js" ,
10
- "module" : " index .js" ,
10
+ "module" : " dist/tree-crawl.ems .js" ,
11
11
"jsnext:main" : " index.js" ,
12
12
"types" : " index.d.ts" ,
13
13
"engines" : {
Original file line number Diff line number Diff line change @@ -6,10 +6,13 @@ import cleanup from 'rollup-plugin-cleanup'
6
6
export default {
7
7
name : 'crawl' ,
8
8
input : 'index.js' ,
9
- output : {
9
+ output : [ {
10
10
format : 'umd' ,
11
11
file : 'dist/tree-crawl.js'
12
- } ,
12
+ } , {
13
+ format : 'es' ,
14
+ file : 'dist/tree-crawl.esm.js'
15
+ } ] ,
13
16
plugins : [
14
17
resolve ( {
15
18
jsnext : true ,
You can’t perform that action at this time.
0 commit comments