From 1556fd375513120156588d25f783bf03139b35ec Mon Sep 17 00:00:00 2001 From: ienaga Date: Mon, 24 Mar 2025 08:43:50 +0900 Subject: [PATCH] =?UTF-8?q?#169=20publish=E6=99=82=E3=81=AF@next2d/rendere?= =?UTF-8?q?r=E3=82=92=E5=88=A9=E7=94=A8=E3=81=97=E3=81=AA=E3=81=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 4 ++-- package.json | 2 +- scripts/publish.js | 3 +++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 525aa331..5d9c2015 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@next2d/player", - "version": "2.0.1", + "version": "2.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@next2d/player", - "version": "2.0.1", + "version": "2.0.2", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index fcaa19cd..fee8b0fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@next2d/player", - "version": "2.0.1", + "version": "2.0.2", "description": "Experience the fast and beautiful anti-aliased rendering of WebGL. You can create rich, interactive graphics, cross-platform applications and games without worrying about browser or device compatibility.", "author": "Toshiyuki Ienaga (https://github.com/ienaga/)", "license": "MIT", diff --git a/scripts/publish.js b/scripts/publish.js index db407573..41a3a2d5 100644 --- a/scripts/publish.js +++ b/scripts/publish.js @@ -54,6 +54,9 @@ const execute = () => packageJson.dependencies = {}; const keys = Object.keys(packageJson.peerDependencies); for (let idx = 0; idx < keys.length; ++idx) { + if ("@next2d/renderer" === keys[idx]) { + continue; + } packageJson.dependencies[keys[idx]] = basePackageJson.version; }