@rimbu/deep
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "@rimbu/deep", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Tools to use handle plain JS objects as immutable objects", | ||
@@ -36,10 +36,14 @@ "keywords": [ | ||
"module": "./dist/esm/index.mjs", | ||
"types": "./dist/types/index.d.mts", | ||
"types": "./dist/cjs/index.d.cts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.mts", | ||
"bun": "./dist/bun/index.mts", | ||
"import": "./dist/esm/index.mjs", | ||
"require": "./dist/cjs/index.cjs", | ||
"default": "./dist/esm/index.mjs" | ||
"import": { | ||
"types": "./dist/esm/index.d.mts", | ||
"default": "./dist/esm/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/index.d.cts", | ||
"default": "./dist/cjs/index.cjs" | ||
}, | ||
"bun": "./dist/bun/index.mts" | ||
} | ||
@@ -54,5 +58,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", | ||
@@ -63,3 +70,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", | ||
@@ -78,4 +84,4 @@ "extract-api": "ts-node ../../config/api-extractor.ts config/api-extractor.main.json", | ||
"dependencies": { | ||
"@rimbu/base": "^2.0.0", | ||
"@rimbu/common": "^2.0.0", | ||
"@rimbu/base": "^2.0.1", | ||
"@rimbu/common": "^2.0.1", | ||
"tslib": "^2.6.2" | ||
@@ -86,3 +92,3 @@ }, | ||
}, | ||
"gitHead": "d107c858cf84cb27544685cef981067f2fe1612d" | ||
"gitHead": "b7ed656d2c55d1a715d6a3f52e364e68cb98c759" | ||
} |
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
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
76
330073
1899
Updated@rimbu/base@^2.0.1
Updated@rimbu/common@^2.0.1