Skip to content

Commit fce70af

Browse files
committed
chore: implement IterableWeakMap and port Iterable
1 parent cdc1887 commit fce70af

File tree

19 files changed

+678
-200
lines changed

19 files changed

+678
-200
lines changed

.changeset/twenty-ravens-change.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@tsplus/stdlib": patch
3+
---
4+
5+
Implement IterableWeakMap and port Iterable

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,23 @@
3131
"packageManager": "yarn@3.1.1",
3232
"devDependencies": {
3333
"@babel/cli": "^7.17.6",
34-
"@babel/core": "^7.17.5",
35-
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
34+
"@babel/core": "^7.17.7",
35+
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
3636
"@changesets/changelog-github": "^0.4.3",
37-
"@changesets/cli": "^2.21.0",
38-
"@effect-ts/build-utils": "0.38.2",
39-
"@effect-ts/core": "^0.58.0",
40-
"@tsplus/installer": "^0.0.32",
37+
"@changesets/cli": "^2.21.1",
38+
"@effect-ts/build-utils": "0.38.3",
39+
"@effect-ts/core": "^0.58.1",
40+
"@tsplus/installer": "^0.0.36",
4141
"@types/node": "^17.0.21",
4242
"@types/rimraf": "^3.0.2",
43-
"@typescript-eslint/eslint-plugin": "^5.13.0",
44-
"@typescript-eslint/parser": "^5.13.0",
43+
"@typescript-eslint/eslint-plugin": "^5.15.0",
44+
"@typescript-eslint/parser": "^5.15.0",
4545
"babel-plugin-annotate-pure-calls": "^0.4.0",
4646
"babel-plugin-replace-import-extension": "^1.1.2",
47-
"chalk": "4.1.2",
47+
"chalk": "5.0.1",
4848
"concurrently": "^7.0.0",
4949
"cpx": "^1.5.0",
50-
"eslint": "^8.10.0",
50+
"eslint": "^8.11.0",
5151
"eslint-config-prettier": "^8.5.0",
5252
"eslint-import-resolver-typescript": "^2.5.0",
5353
"eslint-plugin-codegen": "0.16.1",
@@ -57,9 +57,9 @@
5757
"eslint-plugin-simple-import-sort": "^7.0.0",
5858
"eslint-plugin-sort-destructure-keys": "^1.4.0",
5959
"madge": "^5.0.1",
60-
"prettier": "^2.5.1",
60+
"prettier": "^2.6.0",
6161
"rimraf": "^3.0.2",
62-
"ts-node": "^10.6.0",
62+
"ts-node": "^10.7.0",
6363
"typescript": "^4.6.2",
6464
"ultra-runner": "^3.10.5"
6565
},

packages/stdlib/src/collections.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
export * as List from "./collections/List.js"
2+
export * as Iterable from "./collections/Iterable.js"
23
export * as mutable from "./collections/mutable.js"
4+
export * as weak from "./collections/weak.js"

0 commit comments

Comments
 (0)