From 2458f2117c06a87b3ca529fcf73edcaaab32365a Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Sat, 8 Jun 2024 18:17:58 +0100 Subject: [PATCH] feat: update package version and set private This commit does two main things. First, it updates the version of the package from 0.3.1 to 0.3.2 in both jsr.json and package.json files. This is a minor version update, indicating some improvements or fixes have been made. Second, it sets the 'private' field in the main package.json to true. This is usually done to prevent accidental publication of a package that is meant to be private. --- package.json | 3 ++- packages/unplugin-typia/jsr.json | 2 +- packages/unplugin-typia/package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9f023cc7..c8bb3182 100644 --- a/package.json +++ b/package.json @@ -28,5 +28,6 @@ "devDependencies": { "turbo": "^2.0.1" }, - "packageManager": "bun@1.1.12" + "packageManager": "bun@1.1.12", + "private": true } diff --git a/packages/unplugin-typia/jsr.json b/packages/unplugin-typia/jsr.json index 3836c472..cf31a9a3 100644 --- a/packages/unplugin-typia/jsr.json +++ b/packages/unplugin-typia/jsr.json @@ -1,6 +1,6 @@ { "name": "@ryoppippi/unplugin-typia", - "version": "0.3.1", + "version": "0.3.2", "exports": { ".": "./src/index.ts", "./api": "./src/api.ts", diff --git a/packages/unplugin-typia/package.json b/packages/unplugin-typia/package.json index d83db7c0..88681f6d 100644 --- a/packages/unplugin-typia/package.json +++ b/packages/unplugin-typia/package.json @@ -1,7 +1,7 @@ { "name": "unplugin-typia", "type": "module", - "version": "0.3.1", + "version": "0.3.2", "description": "unplugin for typia", "author": "ryoppippi", "license": "MIT",