Skip to content

Commit c563f52

Browse files
Annotating, fixing issues with packages
1 parent e4a17c2 commit c563f52

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017, Kurtis Rainbolt-Greene <kurtis@rainbolt-greene.online>
1+
Copyright (c) 2019, Kurtis Rainbolt-Greene <kurtis@rainbolt-greene.online>
22

33
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![Stability][BADGE_STABILITY]
55
![Dependencies][BADGE_DEPENDENCY]
66

7-
> IteratorType => Array<mixed>
7+
> Map<A, B> => Array<[A, B]>
88
99
Takes an Iterator (SetIterator, MapIterator, etc) and turns it into an array.
1010

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,13 @@
6262
"dependencies": {
6363
},
6464
"files": [
65-
"index.js",
65+
"index.ts",
6666
"main.js",
6767
"main.js.map",
6868
"browser.js",
6969
"browser.js.map"
7070
],
7171
"module": "module.js",
72-
"browser": "browser.js"
72+
"browser": "browser.js",
73+
"types": "types.d.ts"
7374
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"noImplicitAny": true,
44
"module": "es6",
5-
"target": "es6",
5+
"target": "es2018",
66
"allowSyntheticDefaultImports": true,
77
"allowJs": false,
88
"moduleResolution": "node"

0 commit comments

Comments
 (0)