diff --git a/README.md b/README.md index ab0a5f4..9cb325e 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ But other languages will be eventually added ## Related projects Here is a list of the related projects made by me + - type ([GitHub](https://github.com/joooKiwi/type) | [NPM](https://www.npmjs.com/package/@joookiwi/type)) - collection ([GitHub](https://github.com/joooKiwi/collection) | [NPM](https://www.npmjs.com/package/@joookiwi/collection)) - enumeration ([GitHub](https://github.com/joooKiwi/enumeration) | [NPM](https://www.npmjs.com/package/@joookiwi/enumerable)) @@ -35,6 +36,7 @@ You can contribute to my projects in 2 different ways | JS/TS | Date | Quick note | |------------------------------------------------------------------|----------------------|-------------------------------------------------------------------------------------------| +| 1.4.0 | March 31st, 2024 | Addition of [type](https://github.com/joooKiwi/type) to the dependency | | [1.3.0](https://github.com/joooKiwi/lazy/releases/tag/v1.3.0-js) | February 19th, 2024 | Standardization of the ~~BIG_INT~~ / BIGINT to only be BIGINT | | 1.2.1 | December 4th, 2023 | A small update of the dependencies | | [1.2.0](https://github.com/joooKiwi/lazy/releases/tag/v1.2.0-js) | September 28th, 2023 | Addition of lazy "bigint" numbers
Fix on the empty array to be `readonly []` | diff --git a/javascript/package-lock.json b/javascript/package-lock.json index 488e7a0..a47cbd2 100644 --- a/javascript/package-lock.json +++ b/javascript/package-lock.json @@ -1,12 +1,12 @@ { "name": "@joookiwi/lazy", - "version": "1.3.0", + "version": "1.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@joookiwi/lazy", - "version": "1.3.0", + "version": "1.4.0", "funding": [ { "type": "github", @@ -18,8 +18,10 @@ } ], "license": "MIT", + "dependencies": { + "@joookiwi/type": "^1.0.0" + }, "devDependencies": { - "@joookiwi/type": "^1.0.0", "@types/jest": "^29.5.12", "@types/node": "^20.11.19", "del-cli": "^5.1.0", @@ -1100,7 +1102,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/@joookiwi/type/-/type-1.0.0.tgz", "integrity": "sha512-1KEz9gSD6fEGRwmZHD7MgMJQ9IrbKqYt0jJ0A372Sd5F+eypOxuMJiHXHRVi3Iqlhlz1onqi8atVxlsZ9phohw==", - "dev": true, "funding": [ { "type": "github", diff --git a/javascript/package.json b/javascript/package.json index 2a6dca3..d9667e7 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@joookiwi/lazy", - "version": "1.3.0", + "version": "1.4.0", "description": "A Javascript implementation of the Kotlin lazy", "scripts": { @@ -63,8 +63,10 @@ ], "author": "JóôòKiwi", "license": "MIT", + "dependencies": { + "@joookiwi/type": "^1.0.0" + }, "devDependencies": { - "@joookiwi/type": "^1.0.0", "@types/jest": "^29.5.12", "@types/node": "^20.11.19", "del-cli": "^5.1.0",