Skip to content

Commit

Permalink
refactor(associative): migrate/remove sparse set features (#486)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: migrate sparse set features to thi.ng/sparse-set pkg

- remove obsolete files
- update pkg
  • Loading branch information
postspectacular committed Jul 20, 2024
1 parent 49f7e2d commit db2957c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 354 deletions.
11 changes: 2 additions & 9 deletions packages/associative/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thi.ng/associative",
"version": "6.3.65",
"description": "Alternative Map and Set implementations with customizable equality semantics & supporting operations, plain object utilities",
"description": "ES Map/Set-compatible implementations with customizable equality semantics & supporting operations",
"type": "module",
"module": "./index.js",
"typings": "./index.d.ts",
Expand Down Expand Up @@ -42,7 +42,6 @@
"@thi.ng/checks": "^3.6.8",
"@thi.ng/dcons": "^3.2.118",
"@thi.ng/equiv": "^2.1.62",
"@thi.ng/errors": "^2.5.12",
"@thi.ng/object-utils": "^1.0.0",
"@thi.ng/transducers": "^9.0.10",
"tslib": "^2.6.3"
Expand All @@ -63,13 +62,10 @@
"map",
"object",
"set",
"skiplist",
"sort",
"sparse",
"trie",
"typescript",
"union",
"value-semantics"
"union"
],
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -134,9 +130,6 @@
"./ll-set": {
"default": "./ll-set.js"
},
"./sparse-set": {
"default": "./sparse-set.js"
},
"./union": {
"default": "./union.js"
}
Expand Down
1 change: 0 additions & 1 deletion packages/associative/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ export * from "./intersection.js";
export * from "./into.js";
export * from "./join.js";
export * from "./ll-set.js";
export * from "./sparse-set.js";
export * from "./union.js";
264 changes: 0 additions & 264 deletions packages/associative/src/sparse-set.ts

This file was deleted.

80 changes: 0 additions & 80 deletions packages/associative/test/sparseset.test.ts

This file was deleted.

0 comments on commit db2957c

Please sign in to comment.