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
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- run: npm install
- run: npm run lint

Expand All @@ -28,7 +28,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- run: npm install
- run: npm run lint
7 changes: 2 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

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

The removal of node-version: "22.x" and registry-url: "https://registry.npmjs.org" parameters from actions/setup-node may cause issues with npm publishing. The registry-url parameter is typically required to set up authentication for publishing to npm. Without it, the NODE_AUTH_TOKEN may not be properly configured. Consider restoring these parameters.

Suggested change
- uses: actions/setup-node@v6
- uses: actions/setup-node@v6
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"

Copilot uses AI. Check for mistakes.
- run: npm install
- run: npm run release
- run: npm publish --access public
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ With Next2D Framework, you can efficiently develop and deploy applications optim

## Supported

| platform | detail |
|-----------------|--------------------------|
| Windows | Export an exe file |
| macOS | Export dmg, app file |
| Linux | Export deb file |
| Steam:Windows | Export an exe file |
| Steam:macOS | Export dmg, app file |
| Steam:Linux | Export deb file |
| web | Export minfy'd JS files |
| platform | detail |
|-----------------|-------------------------------------|
| Windows | Export an exe file |
| macOS | Export dmg, app file |
| Linux | Export deb file |
| Steam:Windows | Export an exe file |
| Steam:macOS | Export dmg, app file |
| Steam:Linux | Export deb file |
| web | Export minfy'd JS files |
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

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

The spelling of "minify'd" is incorrect. It should be "minified".

Suggested change
| web | Export minfy'd JS files |
| web | Export minified JS files |

Copilot uses AI. Check for mistakes.
| iOS | open Xcode, and Export ipa |
| iOS | open Android Studio, and Export apk |
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

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

The table row for iOS and Android appears to be incorrect. Line 41 has "iOS" as the platform but describes "open Android Studio, and Export apk" which is for Android. This should be a separate row with "Android" as the platform name.

Suggested change
| iOS | open Android Studio, and Export apk |
| Android | open Android Studio, and Export apk |

Copilot uses AI. Check for mistakes.

### Scheduled introduction

| platform |
|-----------------|
| iOS |
| Android |
| Nintendo Switch |

### build example.
Expand Down
Loading