Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@latest

Copilot AI Dec 1, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The npm install -g npm@latest step may introduce unpredictability in the CI/CD pipeline by installing whatever the latest npm version is at runtime. This could lead to inconsistent builds or unexpected breaking changes.

Consider pinning to a specific npm version (e.g., npm@10.x.x or npm@11.x.x) to ensure reproducible builds and avoid potential issues from future npm updates.

Suggested change
- run: npm install -g npm@latest
- run: npm install -g npm@10.5.0

Copilot uses AI. Check for mistakes.
- run: npm install
- run: npm run release
- run: npm publish
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-next2d-app",
"version": "2.1.13",
"version": "2.1.14",
"description": "Create Next2D apps with no build configuration.",
"author": "Toshiyuki Ienaga<ienaga@next2d.app>",
"license": "MIT",
Expand Down
Loading