From 8e5d2a9edbeb30f7a2ef4f43d6da867e160bfa41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 9 Oct 2023 19:46:27 +0000 Subject: [PATCH] Version Packages --- .changeset/eight-bobcats-refuse.md | 5 --- .changeset/funny-knives-kiss.md | 5 --- .changeset/itchy-snails-agree.md | 5 --- .changeset/nasty-horses-heal.md | 5 --- .changeset/new-geckos-wink.md | 5 --- .changeset/red-trees-poke.md | 5 --- .changeset/wet-papayas-think.md | 5 --- libs/codegen/package.json | 8 ++--- libs/colors/CHANGELOG.md | 7 ++++ libs/colors/package.json | 4 +-- libs/figma/CHANGELOG.md | 13 +++++++ libs/figma/package.json | 8 ++--- libs/fs/CHANGELOG.md | 7 ++++ libs/fs/package.json | 4 +-- libs/log/CHANGELOG.md | 13 +++++++ libs/log/package.json | 4 +-- libs/pkg-misc/CHANGELOG.md | 8 +++++ libs/pkg-misc/package.json | 6 ++-- libs/std/CHANGELOG.md | 6 ++++ libs/std/package.json | 2 +- libs/svg/CHANGELOG.md | 18 ++++++++++ libs/svg/package.json | 10 +++--- libs/vfs/CHANGELOG.md | 11 ++++++ libs/vfs/package.json | 12 +++---- yarn.lock | 54 +++++++++++++++--------------- 25 files changed, 139 insertions(+), 91 deletions(-) delete mode 100644 .changeset/eight-bobcats-refuse.md delete mode 100644 .changeset/funny-knives-kiss.md delete mode 100644 .changeset/itchy-snails-agree.md delete mode 100644 .changeset/nasty-horses-heal.md delete mode 100644 .changeset/new-geckos-wink.md delete mode 100644 .changeset/red-trees-poke.md delete mode 100644 .changeset/wet-papayas-think.md diff --git a/.changeset/eight-bobcats-refuse.md b/.changeset/eight-bobcats-refuse.md deleted file mode 100644 index 69bbca5..0000000 --- a/.changeset/eight-bobcats-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/figma': minor ---- - -New documentation diff --git a/.changeset/funny-knives-kiss.md b/.changeset/funny-knives-kiss.md deleted file mode 100644 index 5a06fe1..0000000 --- a/.changeset/funny-knives-kiss.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/log': minor ---- - -Rework `createLoggerFactory` levels types diff --git a/.changeset/itchy-snails-agree.md b/.changeset/itchy-snails-agree.md deleted file mode 100644 index 44a160a..0000000 --- a/.changeset/itchy-snails-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/svg': patch ---- - -Make the argument for builder params optional diff --git a/.changeset/nasty-horses-heal.md b/.changeset/nasty-horses-heal.md deleted file mode 100644 index 83c5459..0000000 --- a/.changeset/nasty-horses-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/svg': patch ---- - -Simplify generated metadata types diff --git a/.changeset/new-geckos-wink.md b/.changeset/new-geckos-wink.md deleted file mode 100644 index b8a701c..0000000 --- a/.changeset/new-geckos-wink.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/svg': minor ---- - -New documentation diff --git a/.changeset/red-trees-poke.md b/.changeset/red-trees-poke.md deleted file mode 100644 index f79ef59..0000000 --- a/.changeset/red-trees-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/std': minor ---- - -Add first `typeof ...` shortcuts diff --git a/.changeset/wet-papayas-think.md b/.changeset/wet-papayas-think.md deleted file mode 100644 index e757078..0000000 --- a/.changeset/wet-papayas-think.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@neodx/log': patch ---- - -New documentation diff --git a/libs/codegen/package.json b/libs/codegen/package.json index 2f69fe8..64b5851 100644 --- a/libs/codegen/package.json +++ b/libs/codegen/package.json @@ -60,10 +60,10 @@ "tmp": "0.2.1" }, "dependencies": { - "@neodx/fs": "0.0.9", - "@neodx/pkg-misc": "0.0.7", - "@neodx/std": "0.1.5", - "@neodx/vfs": "0.1.9", + "@neodx/fs": "0.0.10", + "@neodx/pkg-misc": "0.0.8", + "@neodx/std": "0.2.0", + "@neodx/vfs": "0.1.10", "ejs": "3.1.9", "jsonc-parser": "3.2.0", "picocolors": "1.0.0", diff --git a/libs/colors/CHANGELOG.md b/libs/colors/CHANGELOG.md index e1af6ed..fcb8e72 100644 --- a/libs/colors/CHANGELOG.md +++ b/libs/colors/CHANGELOG.md @@ -1,5 +1,12 @@ # @neodx/colors +## 0.2.6 + +### Patch Changes + +- Updated dependencies [[`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b)]: + - @neodx/std@0.2.0 + ## 0.2.5 ### Patch Changes diff --git a/libs/colors/package.json b/libs/colors/package.json index 297eb26..f5c7b04 100644 --- a/libs/colors/package.json +++ b/libs/colors/package.json @@ -1,6 +1,6 @@ { "name": "@neodx/colors", - "version": "0.2.5", + "version": "0.2.6", "description": "Formatting and color utils for the terminal", "type": "module", "main": "./dist/index.cjs", @@ -48,7 +48,7 @@ "@neodx/autobuild": "*" }, "dependencies": { - "@neodx/std": "0.1.5" + "@neodx/std": "0.2.0" }, "exports": { ".": { diff --git a/libs/figma/CHANGELOG.md b/libs/figma/CHANGELOG.md index cadc0be..7a600f1 100644 --- a/libs/figma/CHANGELOG.md +++ b/libs/figma/CHANGELOG.md @@ -1,5 +1,18 @@ # @neodx/figma +## 0.4.0 + +### Minor Changes + +- [#120](https://github.com/secundant/neodx/pull/120) [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b) Thanks [@secundant](https://github.com/secundant)! - New documentation + +### Patch Changes + +- Updated dependencies [[`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b), [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b), [`2614a03`](https://github.com/secundant/neodx/commit/2614a0345f2a2cd57984c22fc5f3e0446e5e8a77)]: + - @neodx/log@0.3.0 + - @neodx/std@0.2.0 + - @neodx/vfs@0.1.10 + ## 0.3.0 ### Minor Changes diff --git a/libs/figma/package.json b/libs/figma/package.json index 3eff4ea..db578fa 100644 --- a/libs/figma/package.json +++ b/libs/figma/package.json @@ -1,6 +1,6 @@ { "name": "@neodx/figma", - "version": "0.3.0", + "version": "0.4.0", "packageManager": "yarn@3.2.0", "description": "No description", "type": "module", @@ -55,9 +55,9 @@ "nuke": "rm -rf dist" }, "dependencies": { - "@neodx/log": "0.2.1", - "@neodx/std": "0.1.5", - "@neodx/vfs": "0.1.9", + "@neodx/log": "0.3.0", + "@neodx/std": "0.2.0", + "@neodx/vfs": "0.1.10", "colord": "2.9.3", "commander": "11.0.0", "cosmiconfig": "8.3.6", diff --git a/libs/fs/CHANGELOG.md b/libs/fs/CHANGELOG.md index 9f5debc..8056997 100644 --- a/libs/fs/CHANGELOG.md +++ b/libs/fs/CHANGELOG.md @@ -1,5 +1,12 @@ # @neodx/fs +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b)]: + - @neodx/std@0.2.0 + ## 0.0.9 ### Patch Changes diff --git a/libs/fs/package.json b/libs/fs/package.json index 9406d22..8c56207 100644 --- a/libs/fs/package.json +++ b/libs/fs/package.json @@ -1,6 +1,6 @@ { "name": "@neodx/fs", - "version": "0.0.9", + "version": "0.0.10", "description": "File system helpers", "type": "module", "main": "./dist/index.cjs", @@ -26,7 +26,7 @@ "tmp": "0.2.1" }, "dependencies": { - "@neodx/std": "0.1.5", + "@neodx/std": "0.2.0", "jsonc-parser": "3.2.0", "tiny-glob": "0.2.9" }, diff --git a/libs/log/CHANGELOG.md b/libs/log/CHANGELOG.md index e25a827..9d557c3 100644 --- a/libs/log/CHANGELOG.md +++ b/libs/log/CHANGELOG.md @@ -1,5 +1,18 @@ # @neodx/log +## 0.3.0 + +### Minor Changes + +- [#120](https://github.com/secundant/neodx/pull/120) [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b) Thanks [@secundant](https://github.com/secundant)! - Rework `createLoggerFactory` levels types + +### Patch Changes + +- [#120](https://github.com/secundant/neodx/pull/120) [`2614a03`](https://github.com/secundant/neodx/commit/2614a0345f2a2cd57984c22fc5f3e0446e5e8a77) Thanks [@secundant](https://github.com/secundant)! - New documentation + +- Updated dependencies []: + - @neodx/colors@0.2.6 + ## 0.2.1 ### Patch Changes diff --git a/libs/log/package.json b/libs/log/package.json index 4870846..fabe53a 100644 --- a/libs/log/package.json +++ b/libs/log/package.json @@ -2,7 +2,7 @@ "name": "@neodx/log", "packageManager": "yarn@3.2.0", "description": "A lightweight universal logging framework", - "version": "0.2.1", + "version": "0.3.0", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", @@ -56,7 +56,7 @@ "lint": "eslint" }, "dependencies": { - "@neodx/colors": "0.2.5", + "@neodx/colors": "0.2.6", "pathe": "1.1.1" }, "devDependencies": { diff --git a/libs/pkg-misc/CHANGELOG.md b/libs/pkg-misc/CHANGELOG.md index 619dc0f..c9b837c 100644 --- a/libs/pkg-misc/CHANGELOG.md +++ b/libs/pkg-misc/CHANGELOG.md @@ -1,5 +1,13 @@ # @neodx/pkg-misc +## 0.0.8 + +### Patch Changes + +- Updated dependencies [[`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b)]: + - @neodx/std@0.2.0 + - @neodx/fs@0.0.10 + ## 0.0.7 ### Patch Changes diff --git a/libs/pkg-misc/package.json b/libs/pkg-misc/package.json index 1dbb545..4549932 100644 --- a/libs/pkg-misc/package.json +++ b/libs/pkg-misc/package.json @@ -1,6 +1,6 @@ { "name": "@neodx/pkg-misc", - "version": "0.0.7", + "version": "0.0.8", "description": "Collection of utilities for common cases in package development - smart dependencies updates, simple formatting with auto-detection of prettier config, etc.", "type": "module", "main": "./dist/cjs/index.cjs", @@ -20,8 +20,8 @@ "lint": "eslint src" }, "dependencies": { - "@neodx/fs": "0.0.9", - "@neodx/std": "0.1.5", + "@neodx/fs": "0.0.10", + "@neodx/std": "0.2.0", "@types/prettier": "2.7.3", "pathe": "1.1.1", "semver": "7.5.4" diff --git a/libs/std/CHANGELOG.md b/libs/std/CHANGELOG.md index 2dcfd05..5f5f347 100644 --- a/libs/std/CHANGELOG.md +++ b/libs/std/CHANGELOG.md @@ -1,5 +1,11 @@ # @neodx/std +## 0.2.0 + +### Minor Changes + +- [#120](https://github.com/secundant/neodx/pull/120) [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b) Thanks [@secundant](https://github.com/secundant)! - Add first `typeof ...` shortcuts + ## 0.1.5 ### Patch Changes diff --git a/libs/std/package.json b/libs/std/package.json index 561b206..229b3f5 100644 --- a/libs/std/package.json +++ b/libs/std/package.json @@ -1,6 +1,6 @@ { "name": "@neodx/std", - "version": "0.1.5", + "version": "0.2.0", "description": "Standard language helpers", "type": "module", "main": "./dist/index.cjs", diff --git a/libs/svg/CHANGELOG.md b/libs/svg/CHANGELOG.md index 995eab7..85e15c4 100644 --- a/libs/svg/CHANGELOG.md +++ b/libs/svg/CHANGELOG.md @@ -1,5 +1,23 @@ # @neodx/svg +## 0.6.0 + +### Minor Changes + +- [#120](https://github.com/secundant/neodx/pull/120) [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b) Thanks [@secundant](https://github.com/secundant)! - New documentation + +### Patch Changes + +- [#120](https://github.com/secundant/neodx/pull/120) [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b) Thanks [@secundant](https://github.com/secundant)! - Make the argument for builder params optional + +- [#120](https://github.com/secundant/neodx/pull/120) [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b) Thanks [@secundant](https://github.com/secundant)! - Simplify generated metadata types + +- Updated dependencies [[`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b), [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b), [`2614a03`](https://github.com/secundant/neodx/commit/2614a0345f2a2cd57984c22fc5f3e0446e5e8a77)]: + - @neodx/log@0.3.0 + - @neodx/std@0.2.0 + - @neodx/vfs@0.1.10 + - @neodx/fs@0.0.10 + ## 0.5.1 ### Patch Changes diff --git a/libs/svg/package.json b/libs/svg/package.json index 50b1200..b668f67 100644 --- a/libs/svg/package.json +++ b/libs/svg/package.json @@ -1,7 +1,7 @@ { "name": "@neodx/svg", "packageManager": "yarn@3.2.0", - "version": "0.5.1", + "version": "0.6.0", "description": "Supercharge your icons ⚡️", "author": { "name": "Dmitry Remezov", @@ -59,10 +59,10 @@ "lint": "eslint src" }, "dependencies": { - "@neodx/fs": "0.0.9", - "@neodx/log": "0.2.1", - "@neodx/std": "0.1.5", - "@neodx/vfs": "0.1.9", + "@neodx/fs": "0.0.10", + "@neodx/log": "0.3.0", + "@neodx/std": "0.2.0", + "@neodx/vfs": "0.1.10", "chokidar": "3.5.3", "colord": "2.9.3", "commander": "11.0.0", diff --git a/libs/vfs/CHANGELOG.md b/libs/vfs/CHANGELOG.md index db3b438..e284e89 100644 --- a/libs/vfs/CHANGELOG.md +++ b/libs/vfs/CHANGELOG.md @@ -1,5 +1,16 @@ # @neodx/vfs +## 0.1.10 + +### Patch Changes + +- Updated dependencies [[`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b), [`8179bf1`](https://github.com/secundant/neodx/commit/8179bf1162eef832eda03726e2dd79dda094c78b), [`2614a03`](https://github.com/secundant/neodx/commit/2614a0345f2a2cd57984c22fc5f3e0446e5e8a77)]: + - @neodx/log@0.3.0 + - @neodx/std@0.2.0 + - @neodx/colors@0.2.6 + - @neodx/fs@0.0.10 + - @neodx/pkg-misc@0.0.8 + ## 0.1.9 ### Patch Changes diff --git a/libs/vfs/package.json b/libs/vfs/package.json index 3f57fc6..2d7ab5f 100644 --- a/libs/vfs/package.json +++ b/libs/vfs/package.json @@ -1,6 +1,6 @@ { "name": "@neodx/vfs", - "version": "0.1.9", + "version": "0.1.10", "description": "Simple virtual file system - working dir context, lazy changes, different modes, integrations and moreover", "type": "module", "main": "./dist/cjs/index.cjs", @@ -56,11 +56,11 @@ } }, "dependencies": { - "@neodx/colors": "0.2.5", - "@neodx/fs": "0.0.9", - "@neodx/log": "0.2.1", - "@neodx/pkg-misc": "0.0.7", - "@neodx/std": "0.1.5", + "@neodx/colors": "0.2.6", + "@neodx/fs": "0.0.10", + "@neodx/log": "0.3.0", + "@neodx/pkg-misc": "0.0.8", + "@neodx/std": "0.2.0", "pathe": "1.1.1", "picocolors": "1.0.0" } diff --git a/yarn.lock b/yarn.lock index 90c3b16..7074b37 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1561,10 +1561,10 @@ __metadata: resolution: "@neodx/codegen@workspace:libs/codegen" dependencies: "@neodx/autobuild": "*" - "@neodx/fs": 0.0.9 - "@neodx/pkg-misc": 0.0.7 - "@neodx/std": 0.1.5 - "@neodx/vfs": 0.1.9 + "@neodx/fs": 0.0.10 + "@neodx/pkg-misc": 0.0.8 + "@neodx/std": 0.2.0 + "@neodx/vfs": 0.1.10 "@types/ejs": 3.1.3 "@types/semver": 7.5.3 "@types/tmp": 0.2.4 @@ -1577,12 +1577,12 @@ __metadata: languageName: unknown linkType: soft -"@neodx/colors@0.2.5, @neodx/colors@workspace:libs/colors": +"@neodx/colors@0.2.6, @neodx/colors@workspace:libs/colors": version: 0.0.0-use.local resolution: "@neodx/colors@workspace:libs/colors" dependencies: "@neodx/autobuild": "*" - "@neodx/std": 0.1.5 + "@neodx/std": 0.2.0 languageName: unknown linkType: soft @@ -1599,9 +1599,9 @@ __metadata: resolution: "@neodx/figma@workspace:libs/figma" dependencies: "@neodx/autobuild": "*" - "@neodx/log": 0.2.1 - "@neodx/std": 0.1.5 - "@neodx/vfs": 0.1.9 + "@neodx/log": 0.3.0 + "@neodx/std": 0.2.0 + "@neodx/vfs": 0.1.10 colord: 2.9.3 commander: 11.0.0 cosmiconfig: 8.3.6 @@ -1612,12 +1612,12 @@ __metadata: languageName: unknown linkType: soft -"@neodx/fs@*, @neodx/fs@0.0.9, @neodx/fs@workspace:libs/fs": +"@neodx/fs@*, @neodx/fs@0.0.10, @neodx/fs@workspace:libs/fs": version: 0.0.0-use.local resolution: "@neodx/fs@workspace:libs/fs" dependencies: "@neodx/autobuild": "*" - "@neodx/std": 0.1.5 + "@neodx/std": 0.2.0 "@types/tmp": 0.2.4 jsonc-parser: 3.2.0 tiny-glob: 0.2.9 @@ -1625,12 +1625,12 @@ __metadata: languageName: unknown linkType: soft -"@neodx/log@*, @neodx/log@0.2.1, @neodx/log@workspace:*, @neodx/log@workspace:libs/log": +"@neodx/log@*, @neodx/log@0.3.0, @neodx/log@workspace:*, @neodx/log@workspace:libs/log": version: 0.0.0-use.local resolution: "@neodx/log@workspace:libs/log" dependencies: "@neodx/autobuild": "*" - "@neodx/colors": 0.2.5 + "@neodx/colors": 0.2.6 "@types/bunyan": 1.8.9 "@types/express": 4.17.18 "@types/koa": 2.13.9 @@ -1662,13 +1662,13 @@ __metadata: languageName: unknown linkType: soft -"@neodx/pkg-misc@0.0.7, @neodx/pkg-misc@workspace:libs/pkg-misc": +"@neodx/pkg-misc@0.0.8, @neodx/pkg-misc@workspace:libs/pkg-misc": version: 0.0.0-use.local resolution: "@neodx/pkg-misc@workspace:libs/pkg-misc" dependencies: "@neodx/autobuild": "*" - "@neodx/fs": 0.0.9 - "@neodx/std": 0.1.5 + "@neodx/fs": 0.0.10 + "@neodx/std": 0.2.0 "@types/prettier": 2.7.3 "@types/semver": 7.5.3 pathe: 1.1.1 @@ -1731,7 +1731,7 @@ __metadata: languageName: unknown linkType: soft -"@neodx/std@*, @neodx/std@0.1.5, @neodx/std@workspace:*, @neodx/std@workspace:libs/std": +"@neodx/std@*, @neodx/std@0.2.0, @neodx/std@workspace:*, @neodx/std@workspace:libs/std": version: 0.0.0-use.local resolution: "@neodx/std@workspace:libs/std" dependencies: @@ -1744,10 +1744,10 @@ __metadata: resolution: "@neodx/svg@workspace:libs/svg" dependencies: "@neodx/autobuild": "*" - "@neodx/fs": 0.0.9 - "@neodx/log": 0.2.1 - "@neodx/std": 0.1.5 - "@neodx/vfs": 0.1.9 + "@neodx/fs": 0.0.10 + "@neodx/log": 0.3.0 + "@neodx/std": 0.2.0 + "@neodx/vfs": 0.1.10 "@swc/helpers": 0.5.3 "@types/react": 18.2.25 "@types/react-dom": 18.2.11 @@ -1774,16 +1774,16 @@ __metadata: languageName: unknown linkType: soft -"@neodx/vfs@*, @neodx/vfs@0.1.9, @neodx/vfs@workspace:libs/vfs": +"@neodx/vfs@*, @neodx/vfs@0.1.10, @neodx/vfs@workspace:libs/vfs": version: 0.0.0-use.local resolution: "@neodx/vfs@workspace:libs/vfs" dependencies: "@neodx/autobuild": "*" - "@neodx/colors": 0.2.5 - "@neodx/fs": 0.0.9 - "@neodx/log": 0.2.1 - "@neodx/pkg-misc": 0.0.7 - "@neodx/std": 0.1.5 + "@neodx/colors": 0.2.6 + "@neodx/fs": 0.0.10 + "@neodx/log": 0.3.0 + "@neodx/pkg-misc": 0.0.8 + "@neodx/std": 0.2.0 "@types/tmp": 0.2.4 pathe: 1.1.1 picocolors: 1.0.0