Skip to content

Commit acbde9d

Browse files
authored
Merge pull request #77 from Next2D/develop
3月のパッケージアップデート
2 parents dd25c96 + 456ee45 commit acbde9d

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,18 @@ name: Lint
33
on:
44
push:
55
branches:
6-
- main
76
- develop
87
pull_request:
98
branches:
109
- main
1110
- develop
11+
workflow_call:
1212

1313
jobs:
1414
macos-browser-test:
1515
runs-on: macos-latest
1616
permissions:
1717
contents: read
18-
pull-requests: write
1918
steps:
2019
- uses: actions/checkout@v6
2120
- uses: actions/setup-node@v6
@@ -31,7 +30,6 @@ jobs:
3130
runs-on: windows-latest
3231
permissions:
3332
contents: read
34-
pull-requests: write
3533
steps:
3634
- uses: actions/checkout@v6
3735
- uses: actions/setup-node@v6

.github/workflows/publish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,16 @@ permissions:
1010
contents: read
1111

1212
jobs:
13+
lint:
14+
uses: ./.github/workflows/lint.yml
15+
1316
publish:
17+
needs: [lint]
1418
runs-on: ubuntu-latest
19+
permissions:
20+
contents: read
21+
pull-requests: write
22+
id-token: write
1523
steps:
1624
- uses: actions/checkout@v6
1725
- uses: actions/setup-node@v6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Create Next2D apps with no build configuration.
1111
## Quick Start
1212

1313
```sh
14-
npx create-next2d-app sample-app
14+
npx create-next2d-app sample-app --template @next2d/framework-template
1515
cd sample-app
1616
npm start
1717
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@next2d/framework-template",
33
"description": "Next2D Framework default JavaScript template.",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"homepage": "https://next2d.app",
66
"bugs": "https://github.com/Next2D/framework-template/issues/new",
77
"author": "Toshiyuki Ienaga<[email protected]>",

template/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
"generate": "npx @next2d/view-generator"
2424
},
2525
"devDependencies": {
26-
"@capacitor/android": "^8.0.2",
27-
"@capacitor/cli": "^8.0.2",
28-
"@capacitor/core": "^8.0.2",
29-
"@capacitor/ios": "^8.0.2",
30-
"@eslint/eslintrc": "^3.3.3",
31-
"@eslint/js": "^9.39.2",
32-
"@next2d/vite-plugin-next2d-auto-loader": "^3.1.12",
26+
"@capacitor/android": "^8.1.0",
27+
"@capacitor/cli": "^8.1.0",
28+
"@capacitor/core": "^8.1.0",
29+
"@capacitor/ios": "^8.1.0",
30+
"@eslint/eslintrc": "^3.3.4",
31+
"@eslint/js": "^10.0.1",
32+
"@next2d/vite-plugin-next2d-auto-loader": "^3.1.13",
3333
"@vitest/web-worker": "^4.0.18",
34-
"eslint": "^9.39.2",
35-
"globals": "^17.3.0",
36-
"jsdom": "^28.0.0",
34+
"eslint": "^10.0.2",
35+
"globals": "^17.4.0",
36+
"jsdom": "^28.1.0",
3737
"vite": "^7.3.1",
3838
"vitest": "^4.0.18",
3939
"vitest-webgl-canvas-mock": "^1.1.0"

0 commit comments

Comments
 (0)