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; }