From a48ebc643f436961da0102345add14d3d1317889 Mon Sep 17 00:00:00 2001 From: anakmagang Date: Sat, 28 Sep 2024 15:55:48 +0000 Subject: [PATCH 1/5] chore(release): unplugin-rescript@0.0.3 [skip ci] ## unplugin-rescript [0.0.3](https://github.com/r17x/js/compare/unplugin-rescript@0.0.2...unplugin-rescript@0.0.3) (2024-09-28) ### Bug Fixes * release with provenance and update homepage ([ff41dee](https://github.com/r17x/js/commit/ff41dee8bf74ed12e8bc525fc44144e48ade7a90)) ### Miscellaneous Chores * in release need to format all package.json after version bump ([02ee3b4](https://github.com/r17x/js/commit/02ee3b4bbe4e3bd84ca8de86cab645ea5c385454)) * make cjs fix script shared ([#15](https://github.com/r17x/js/issues/15)) ([d039719](https://github.com/r17x/js/commit/d039719ab71ef70607b0ee326848b168d82e722e)) * removed postversion and disable workspace-update ([4c9e57a](https://github.com/r17x/js/commit/4c9e57aeb00fa5d1c9b6b60d1338f216e788c8f2)) * repository field information ([c8c864d](https://github.com/r17x/js/commit/c8c864d2b3e8a6f3d040ce34e063b0efe9d3beb7)) * **unplugin-rescript:** add unplugin-rescript ([f58c5f9](https://github.com/r17x/js/commit/f58c5f90c1ff5b6afb5222eabae570b1f87e6a4f)) * update scripts prepack ([3be627c](https://github.com/r17x/js/commit/3be627c7306515307aecaa5d1b7b8d064ba3431b)) --- packages/unplugin-rescript/CHANGELOG.md | 14 ++++++++++++++ packages/unplugin-rescript/package.json | 11 ++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 packages/unplugin-rescript/CHANGELOG.md diff --git a/packages/unplugin-rescript/CHANGELOG.md b/packages/unplugin-rescript/CHANGELOG.md new file mode 100644 index 0000000..9cb65d6 --- /dev/null +++ b/packages/unplugin-rescript/CHANGELOG.md @@ -0,0 +1,14 @@ +## unplugin-rescript [0.0.3](https://github.com/r17x/js/compare/unplugin-rescript@0.0.2...unplugin-rescript@0.0.3) (2024-09-28) + +### Bug Fixes + +* release with provenance and update homepage ([ff41dee](https://github.com/r17x/js/commit/ff41dee8bf74ed12e8bc525fc44144e48ade7a90)) + +### Miscellaneous Chores + +* in release need to format all package.json after version bump ([02ee3b4](https://github.com/r17x/js/commit/02ee3b4bbe4e3bd84ca8de86cab645ea5c385454)) +* make cjs fix script shared ([#15](https://github.com/r17x/js/issues/15)) ([d039719](https://github.com/r17x/js/commit/d039719ab71ef70607b0ee326848b168d82e722e)) +* removed postversion and disable workspace-update ([4c9e57a](https://github.com/r17x/js/commit/4c9e57aeb00fa5d1c9b6b60d1338f216e788c8f2)) +* repository field information ([c8c864d](https://github.com/r17x/js/commit/c8c864d2b3e8a6f3d040ce34e063b0efe9d3beb7)) +* **unplugin-rescript:** add unplugin-rescript ([f58c5f9](https://github.com/r17x/js/commit/f58c5f90c1ff5b6afb5222eabae570b1f87e6a4f)) +* update scripts prepack ([3be627c](https://github.com/r17x/js/commit/3be627c7306515307aecaa5d1b7b8d064ba3431b)) diff --git a/packages/unplugin-rescript/package.json b/packages/unplugin-rescript/package.json index a4d7794..6ed0206 100644 --- a/packages/unplugin-rescript/package.json +++ b/packages/unplugin-rescript/package.json @@ -1,7 +1,7 @@ { "name": "unplugin-rescript", "type": "module", - "version": "0.0.2", + "version": "0.0.3", "description": "a plugin for integration ReScript with most Bundler (Vite, Rollup, Webpack, Esbuild, etc).", "license": "MIT", "author": "r17x ", @@ -77,10 +77,15 @@ "types": "dist/index.d.ts", "typesVersions": { "*": { - "*": ["./dist/*", "./*"] + "*": [ + "./dist/*", + "./*" + ] } }, - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "prepack": "npm run build", "build": "tsup", From 4346cd2bbb4e1a72c8034f4b2c72b622e60f982d Mon Sep 17 00:00:00 2001 From: r17x Date: Sat, 28 Sep 2024 22:59:59 +0700 Subject: [PATCH 2/5] fix: all publish with provenance --- packages/biome/package.json | 2 +- packages/semantic-release/package.json | 6 ++---- packages/unplugin-environment/package.json | 12 +++--------- packages/unplugin-rescript/package.json | 11 +++-------- 4 files changed, 9 insertions(+), 22 deletions(-) diff --git a/packages/biome/package.json b/packages/biome/package.json index e762ddb..e3833e3 100644 --- a/packages/biome/package.json +++ b/packages/biome/package.json @@ -10,7 +10,7 @@ }, "publishConfig": { "access": "public", - "provenance": "true" + "provenance": true }, "type": "module", "files": ["index.json"], diff --git a/packages/semantic-release/package.json b/packages/semantic-release/package.json index d876f43..1bd3974 100644 --- a/packages/semantic-release/package.json +++ b/packages/semantic-release/package.json @@ -10,11 +10,9 @@ }, "publishConfig": { "access": "public", - "provenance": "true" + "provenance": true }, - "files": [ - "index.json" - ], + "files": ["index.json"], "exports": { ".": { "require": "./index.json", diff --git a/packages/unplugin-environment/package.json b/packages/unplugin-environment/package.json index 332973c..aa1334f 100644 --- a/packages/unplugin-environment/package.json +++ b/packages/unplugin-environment/package.json @@ -85,16 +85,10 @@ "types": "dist/index.d.ts", "typesVersions": { "*": { - "*": [ - "./dist/*", - "./*" - ] + "*": ["./dist/*", "./*"] } }, - "files": [ - "dist", - "client.d.ts" - ], + "files": ["dist", "client.d.ts"], "scripts": { "prepack": "npm run build", "build": "tsup", @@ -155,7 +149,7 @@ "webpack": "^5.89.0" }, "publishConfig": { - "provenance": "true", + "provenance": true, "access": "public" } } diff --git a/packages/unplugin-rescript/package.json b/packages/unplugin-rescript/package.json index 6ed0206..56c780d 100644 --- a/packages/unplugin-rescript/package.json +++ b/packages/unplugin-rescript/package.json @@ -77,15 +77,10 @@ "types": "dist/index.d.ts", "typesVersions": { "*": { - "*": [ - "./dist/*", - "./*" - ] + "*": ["./dist/*", "./*"] } }, - "files": [ - "dist" - ], + "files": ["dist"], "scripts": { "prepack": "npm run build", "build": "tsup", @@ -139,7 +134,7 @@ "webpack": "^5.89.0" }, "publishConfig": { - "provenance": "true", + "provenance": true, "access": "public" } } From 3098a159ab9bb37e946c2dc9a55fc41be43af64c Mon Sep 17 00:00:00 2001 From: anakmagang Date: Sat, 28 Sep 2024 16:00:48 +0000 Subject: [PATCH 3/5] chore(release): @r17x/biome@1.0.2 [skip ci] ## @r17x/biome [1.0.2](https://github.com/r17x/js/compare/@r17x/biome@1.0.1...@r17x/biome@1.0.2) (2024-09-28) ### Bug Fixes * all publish with provenance ([4346cd2](https://github.com/r17x/js/commit/4346cd2bbb4e1a72c8034f4b2c72b622e60f982d)) ### Miscellaneous Chores * removed postversion and disable workspace-update ([4c9e57a](https://github.com/r17x/js/commit/4c9e57aeb00fa5d1c9b6b60d1338f216e788c8f2)) --- packages/biome/CHANGELOG.md | 10 ++++++++++ packages/biome/package.json | 6 ++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/packages/biome/CHANGELOG.md b/packages/biome/CHANGELOG.md index 8f5cd5a..a10548f 100644 --- a/packages/biome/CHANGELOG.md +++ b/packages/biome/CHANGELOG.md @@ -1,3 +1,13 @@ +## @r17x/biome [1.0.2](https://github.com/r17x/js/compare/@r17x/biome@1.0.1...@r17x/biome@1.0.2) (2024-09-28) + +### Bug Fixes + +* all publish with provenance ([4346cd2](https://github.com/r17x/js/commit/4346cd2bbb4e1a72c8034f4b2c72b622e60f982d)) + +### Miscellaneous Chores + +* removed postversion and disable workspace-update ([4c9e57a](https://github.com/r17x/js/commit/4c9e57aeb00fa5d1c9b6b60d1338f216e788c8f2)) + ## @r17x/biome [1.0.1](https://github.com/r17x/js/compare/@r17x/biome@1.0.0...@r17x/biome@1.0.1) (2024-09-28) ### Bug Fixes diff --git a/packages/biome/package.json b/packages/biome/package.json index e3833e3..617895f 100644 --- a/packages/biome/package.json +++ b/packages/biome/package.json @@ -1,7 +1,7 @@ { "name": "@r17x/biome", "description": "biomejs.dev configuration", - "version": "1.0.1", + "version": "1.0.2", "homepage": "https://github.com/r17x/js/tree/main/packages/biome", "repository": { "type": "git", @@ -13,7 +13,9 @@ "provenance": true }, "type": "module", - "files": ["index.json"], + "files": [ + "index.json" + ], "exports": { ".": "./index.json" } From 665f2968ca4b73c48bf85bf4c1cafd2fd9834931 Mon Sep 17 00:00:00 2001 From: anakmagang Date: Sat, 28 Sep 2024 16:00:56 +0000 Subject: [PATCH 4/5] chore(release): @r17x/semantic-release@1.0.3 [skip ci] ## @r17x/semantic-release [1.0.3](https://github.com/r17x/js/compare/@r17x/semantic-release@1.0.2...@r17x/semantic-release@1.0.3) (2024-09-28) ### Bug Fixes * all publish with provenance ([4346cd2](https://github.com/r17x/js/commit/4346cd2bbb4e1a72c8034f4b2c72b622e60f982d)) --- packages/semantic-release/CHANGELOG.md | 6 ++++++ packages/semantic-release/package.json | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/semantic-release/CHANGELOG.md b/packages/semantic-release/CHANGELOG.md index b8aac48..4828f79 100644 --- a/packages/semantic-release/CHANGELOG.md +++ b/packages/semantic-release/CHANGELOG.md @@ -1,3 +1,9 @@ +## @r17x/semantic-release [1.0.3](https://github.com/r17x/js/compare/@r17x/semantic-release@1.0.2...@r17x/semantic-release@1.0.3) (2024-09-28) + +### Bug Fixes + +* all publish with provenance ([4346cd2](https://github.com/r17x/js/commit/4346cd2bbb4e1a72c8034f4b2c72b622e60f982d)) + ## @r17x/semantic-release [1.0.2](https://github.com/r17x/js/compare/@r17x/semantic-release@1.0.1...@r17x/semantic-release@1.0.2) (2024-09-28) ### Bug Fixes diff --git a/packages/semantic-release/package.json b/packages/semantic-release/package.json index 1bd3974..dad3092 100644 --- a/packages/semantic-release/package.json +++ b/packages/semantic-release/package.json @@ -1,7 +1,7 @@ { "name": "@r17x/semantic-release", "description": "semantic-release configuration", - "version": "1.0.2", + "version": "1.0.3", "homepage": "https://github.com/r17x/js/tree/main/packages/semantic-release", "repository": { "type": "git", @@ -12,7 +12,9 @@ "access": "public", "provenance": true }, - "files": ["index.json"], + "files": [ + "index.json" + ], "exports": { ".": { "require": "./index.json", From 112fb6f6670d5c8c935d655fcea66ed15d2df680 Mon Sep 17 00:00:00 2001 From: anakmagang Date: Sat, 28 Sep 2024 16:01:02 +0000 Subject: [PATCH 5/5] chore(release): unplugin-environment@1.2.2 [skip ci] ## unplugin-environment [1.2.2](https://github.com/r17x/js/compare/unplugin-environment@1.2.1...unplugin-environment@1.2.2) (2024-09-28) ### Bug Fixes * all publish with provenance ([4346cd2](https://github.com/r17x/js/commit/4346cd2bbb4e1a72c8034f4b2c72b622e60f982d)) --- packages/unplugin-environment/CHANGELOG.md | 6 ++++++ packages/unplugin-environment/package.json | 12 +++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/packages/unplugin-environment/CHANGELOG.md b/packages/unplugin-environment/CHANGELOG.md index 7a39ec2..1b2d4b0 100644 --- a/packages/unplugin-environment/CHANGELOG.md +++ b/packages/unplugin-environment/CHANGELOG.md @@ -1,3 +1,9 @@ +## unplugin-environment [1.2.2](https://github.com/r17x/js/compare/unplugin-environment@1.2.1...unplugin-environment@1.2.2) (2024-09-28) + +### Bug Fixes + +* all publish with provenance ([4346cd2](https://github.com/r17x/js/commit/4346cd2bbb4e1a72c8034f4b2c72b622e60f982d)) + ## unplugin-environment [1.2.1](https://github.com/r17x/js/compare/unplugin-environment@1.2.0...unplugin-environment@1.2.1) (2024-09-28) ### Bug Fixes diff --git a/packages/unplugin-environment/package.json b/packages/unplugin-environment/package.json index aa1334f..7d2241a 100644 --- a/packages/unplugin-environment/package.json +++ b/packages/unplugin-environment/package.json @@ -1,7 +1,7 @@ { "name": "unplugin-environment", "type": "module", - "version": "1.2.1", + "version": "1.2.2", "description": "A plugin for loading enviroment variables safely with schema validation, simple with virtual module, type-safe with intellisense, and better DX 🔥 🚀 👷. Support with Next.js, Vite, Webpack, Rollup, Rspack, Farm, and more.", "license": "MIT", "author": "r17x ", @@ -85,10 +85,16 @@ "types": "dist/index.d.ts", "typesVersions": { "*": { - "*": ["./dist/*", "./*"] + "*": [ + "./dist/*", + "./*" + ] } }, - "files": ["dist", "client.d.ts"], + "files": [ + "dist", + "client.d.ts" + ], "scripts": { "prepack": "npm run build", "build": "tsup",