@rimbu/sorted
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -6,3 +6,3 @@ { | ||
"module": "../dist/esm/common/index.mjs", | ||
"types": "../dist/types/common/index.d.mts" | ||
"types": "../dist/cjs/common/index.d.cts" | ||
} |
@@ -6,3 +6,3 @@ { | ||
"module": "../dist/esm/map-custom/index.mjs", | ||
"types": "../dist/types/map-custom/index.d.mts" | ||
"types": "../dist/cjs/map-custom/index.d.cts" | ||
} |
@@ -6,3 +6,3 @@ { | ||
"module": "../dist/esm/map/index.mjs", | ||
"types": "../dist/types/map/index.d.mts" | ||
"types": "../dist/cjs/map/index.d.cts" | ||
} |
108
package.json
{ | ||
"name": "@rimbu/sorted", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Immutable SortedMap and SortedSet implementations for TypeScript", | ||
@@ -38,45 +38,69 @@ "keywords": [ | ||
"module": "./dist/esm/main/index.mjs", | ||
"types": "./dist/types/main/index.d.mts", | ||
"types": "./dist/cjs/main/index.d.cts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/main/index.d.mts", | ||
"bun": "./dist/bun/main/index.mts", | ||
"import": "./dist/esm/main/index.mjs", | ||
"require": "./dist/cjs/main/index.cjs", | ||
"default": "./dist/esm/main/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/main/index.d.mts", | ||
"default": "./dist/esm/main/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/main/index.d.cts", | ||
"default": "./dist/cjs/main/index.cjs" | ||
}, | ||
"bun": "./dist/bun/main/index.mts" | ||
}, | ||
"./common": { | ||
"types": "./dist/types/common/index.d.mts", | ||
"bun": "./dist/bun/common/index.mts", | ||
"import": "./dist/esm/common/index.mjs", | ||
"require": "./dist/cjs/common/index.cjs", | ||
"default": "./dist/esm/common/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/common/index.d.mts", | ||
"default": "./dist/esm/common/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/common/index.d.cts", | ||
"default": "./dist/cjs/common/index.cjs" | ||
}, | ||
"bun": "./dist/bun/common/index.mts" | ||
}, | ||
"./map": { | ||
"types": "./dist/types/map/index.d.mts", | ||
"bun": "./dist/bun/map/index.mts", | ||
"import": "./dist/esm/map/index.mjs", | ||
"require": "./dist/cjs/map/index.cjs", | ||
"default": "./dist/esm/map/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/map/index.d.mts", | ||
"default": "./dist/esm/map/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/map/index.d.cts", | ||
"default": "./dist/cjs/map/index.cjs" | ||
}, | ||
"bun": "./dist/bun/map/index.mts" | ||
}, | ||
"./map-custom": { | ||
"types": "./dist/types/map-custom/index.d.mts", | ||
"bun": "./dist/bun/map-custom/index.mts", | ||
"import": "./dist/esm/map-custom/index.mjs", | ||
"require": "./dist/cjs/map-custom/index.cjs", | ||
"default": "./dist/esm/map-custom/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/map-custom/index.d.mts", | ||
"default": "./dist/esm/map-custom/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/map-custom/index.d.cts", | ||
"default": "./dist/cjs/map-custom/index.cjs" | ||
}, | ||
"bun": "./dist/bun/map-custom/index.mts" | ||
}, | ||
"./set": { | ||
"types": "./dist/types/set/index.d.mts", | ||
"bun": "./dist/bun/set/index.mts", | ||
"import": "./dist/esm/set/index.mjs", | ||
"require": "./dist/cjs/set/index.cjs", | ||
"default": "./dist/esm/set/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/set/index.d.mts", | ||
"default": "./dist/esm/set/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/set/index.d.cts", | ||
"default": "./dist/cjs/set/index.cjs" | ||
}, | ||
"bun": "./dist/bun/set/index.mts" | ||
}, | ||
"./set-custom": { | ||
"types": "./dist/types/set-custom/index.d.mts", | ||
"bun": "./dist/bun/set-custom/index.mts", | ||
"import": "./dist/esm/set-custom/index.mjs", | ||
"require": "./dist/cjs/set-custom/index.cjs", | ||
"default": "./dist/esm/set-custom/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/set-custom/index.d.mts", | ||
"default": "./dist/esm/set-custom/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/set-custom/index.d.cts", | ||
"default": "./dist/cjs/set-custom/index.cjs" | ||
}, | ||
"bun": "./dist/bun/set-custom/index.mts" | ||
} | ||
@@ -96,5 +120,8 @@ }, | ||
"build:deno": "yarn bundle:deno-prepare && yarn bundle:deno-convert && yarn bundle:deno-move && yarn bundle:deno-clean", | ||
"bundle": "yarn bundle:cjs && yarn bundle:esm && yarn bundle:types && yarn bundle:bun", | ||
"bundle:bun": "node ../../config/bunnify.mjs", | ||
"bundle:cjs": "tsup src --format cjs --clean -d dist/cjs --loader '.mts=ts'", | ||
"bundle": "yarn bundle:cjs && yarn bundle:esm && yarn bundle:bun", | ||
"bundle:bun": "node ../../config/bunnify.mjs -mode bun", | ||
"bundle:cjs": "yarn bundle:cjs-prepare && yarn bundle:cjs-build && yarn bundle:cjs-clean", | ||
"bundle:cjs-prepare": "node ../../config/bunnify.mjs -mode cjs", | ||
"bundle:cjs-build": "tsc -p tsconfig.cjs.json", | ||
"bundle:cjs-clean": "rimraf _cjs_prepare", | ||
"bundle:deno-prepare": "node ../../config/prepare-denoify.mjs", | ||
@@ -105,3 +132,2 @@ "bundle:deno-convert": "denoify --src _deno_prepare/src", | ||
"bundle:esm": "tsc --p tsconfig.esm.json", | ||
"bundle:types": "tsc --p tsconfig.types.json", | ||
"clean": "rimraf dist", | ||
@@ -126,6 +152,6 @@ "extract-api": "yarn extract-api:main && yarn extract-api:map && yarn extract-api:map-custom && yarn extract-api:set && yarn extract-api:set-custom", | ||
"dependencies": { | ||
"@rimbu/base": "^2.0.0", | ||
"@rimbu/collection-types": "^2.1.0", | ||
"@rimbu/common": "^2.0.0", | ||
"@rimbu/stream": "^2.1.0", | ||
"@rimbu/base": "^2.0.1", | ||
"@rimbu/collection-types": "^2.1.1", | ||
"@rimbu/common": "^2.0.1", | ||
"@rimbu/stream": "^2.2.0", | ||
"tslib": "^2.6.2" | ||
@@ -136,3 +162,3 @@ }, | ||
}, | ||
"gitHead": "3b21319ce2d2ecf3d96bfbb09b688df09405acd0" | ||
"gitHead": "b7ed656d2c55d1a715d6a3f52e364e68cb98c759" | ||
} |
@@ -6,3 +6,3 @@ { | ||
"module": "../dist/esm/set-custom/index.mjs", | ||
"types": "../dist/types/set-custom/index.d.mts" | ||
"types": "../dist/cjs/set-custom/index.d.cts" | ||
} |
@@ -6,3 +6,3 @@ { | ||
"module": "../dist/esm/set/index.mjs", | ||
"types": "../dist/types/set/index.d.mts" | ||
"types": "../dist/cjs/set/index.d.cts" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
153
804945
5150
1
Updated@rimbu/base@^2.0.1
Updated@rimbu/common@^2.0.1
Updated@rimbu/stream@^2.2.0