From fb4322639a206e85aa11e93a5e8589f21745fac2 Mon Sep 17 00:00:00 2001 From: guen Date: Sun, 12 Oct 2025 20:03:13 +0900 Subject: [PATCH] chore: update package files and license setup - Remove `LICENSE` from `core` package files and adjust file paths. - Include `README.md` in `nuxt` package files. - Consolidate and relocate `LICENSE` file. --- packages/core/LICENSE => LICENSE | 0 packages/core/package.json | 3 +-- packages/nuxt/LICENSE | 21 --------------------- packages/nuxt/package.json | 3 ++- 4 files changed, 3 insertions(+), 24 deletions(-) rename packages/core/LICENSE => LICENSE (100%) delete mode 100644 packages/nuxt/LICENSE diff --git a/packages/core/LICENSE b/LICENSE similarity index 100% rename from packages/core/LICENSE rename to LICENSE diff --git a/packages/core/package.json b/packages/core/package.json index d177a8b..ae17526 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -43,8 +43,7 @@ }, "files": [ "dist", - "README.md", - "LICENSE" + "README.md" ], "sideEffects": false, "scripts": { diff --git a/packages/nuxt/LICENSE b/packages/nuxt/LICENSE deleted file mode 100644 index 2959ebb..0000000 --- a/packages/nuxt/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2025 Guen - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/packages/nuxt/package.json b/packages/nuxt/package.json index aecd458..718b008 100644 --- a/packages/nuxt/package.json +++ b/packages/nuxt/package.json @@ -36,7 +36,8 @@ } }, "files": [ - "dist" + "dist", + "README.md" ], "scripts": { "prepack": "nuxt-module-build prepare && nuxt-module-build build",