Skip to content

Commit

Permalink
feat: update package version and set private
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ryoppippi committed Jun 8, 2024
1 parent 004c16a commit 2458f21
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@
"devDependencies": {
"turbo": "^2.0.1"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"private": true
}
2 changes: 1 addition & 1 deletion packages/unplugin-typia/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ryoppippi/unplugin-typia",
"version": "0.3.1",
"version": "0.3.2",
"exports": {
".": "./src/index.ts",
"./api": "./src/api.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/unplugin-typia/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 2458f21

Please sign in to comment.