From 038adeaaa32ca8dbb69459acedda53b5cf741df5 Mon Sep 17 00:00:00 2001 From: JoooKiwi <66183590+joooKiwi@users.noreply.github.com> Date: Sun, 31 Mar 2024 21:48:37 -0400 Subject: [PATCH 1/3] Update of the version --- javascript/package-lock.json | 4 ++-- javascript/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/package-lock.json b/javascript/package-lock.json index 488e7a0..678ba4f 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", diff --git a/javascript/package.json b/javascript/package.json index 2a6dca3..355c156 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": { From f42cdc2765921c9851b7795bfce20171cf03ac0f Mon Sep 17 00:00:00 2001 From: JoooKiwi <66183590+joooKiwi@users.noreply.github.com> Date: Sun, 31 Mar 2024 21:53:08 -0400 Subject: [PATCH 2/3] Change to the development dependency for "@joookiwi/type" to be a direct dependency --- javascript/package-lock.json | 5 +++-- javascript/package.json | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/javascript/package-lock.json b/javascript/package-lock.json index 678ba4f..a47cbd2 100644 --- a/javascript/package-lock.json +++ b/javascript/package-lock.json @@ -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 355c156..d9667e7 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -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", From 282f7dafc70aa3047256ad9784ba614af0053b4f Mon Sep 17 00:00:00 2001 From: JoooKiwi <66183590+joooKiwi@users.noreply.github.com> Date: Sun, 31 Mar 2024 21:59:13 -0400 Subject: [PATCH 3/3] Addition of the 1.4.0 to the base readme and the "type project" --- README.md | 2 ++ 1 file changed, 2 insertions(+) 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 []` |