Skip to content

Commit 620582c

Browse files
authored
Merge pull request #43 from Next2D/develop
sampleのアニメーションを入れ替え
2 parents a3306b9 + 68a75b1 commit 620582c

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ dist-ssr
2121
*.ntvs*
2222
*.njsproj
2323
*.sln
24-
*.sw?
24+
*.sw?
25+
26+
template/package-lock.json

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-typescript-template",
33
"description": "Next2D Framework default TypeScript template.",
4-
"version": "3.1.0",
4+
"version": "3.2.0",
55
"homepage": "https://next2d.app",
66
"bugs": "https://github.com/Next2D/framework-typescript-template/issues/new",
77
"author": "Toshiyuki Ienaga<ienaga@next2d.app>",

template/file/sample.n2d

10.4 KB
Binary file not shown.

template/mock/content/sample.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

template/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
"@capacitor/ios": "^7.2.0",
2626
"@eslint/eslintrc": "^3.3.1",
2727
"@eslint/js": "^9.24.0",
28-
"@next2d/vite-plugin-next2d-auto-loader": "^3.1.0",
29-
"@types/node": "^22.14.0",
30-
"@typescript-eslint/eslint-plugin": "^8.29.0",
31-
"@typescript-eslint/parser": "^8.29.0",
28+
"@next2d/vite-plugin-next2d-auto-loader": "^3.1.2",
29+
"@types/node": "^22.14.1",
30+
"@typescript-eslint/eslint-plugin": "^8.30.1",
31+
"@typescript-eslint/parser": "^8.30.1",
3232
"@vitest/web-worker": "^3.1.1",
3333
"eslint": "^9.24.0",
3434
"eslint-plugin-unused-imports": "^4.1.4",
3535
"globals": "^16.0.0",
36-
"jsdom": "^26.0.0",
36+
"jsdom": "^26.1.0",
3737
"typescript": "^5.8.3",
38-
"vite": "^6.2.5",
38+
"vite": "^6.3.2",
3939
"vitest": "^3.1.1",
4040
"vitest-webgl-canvas-mock": "^1.1.0"
4141
},

template/src/view/home/HomeViewModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class HomeViewModel extends ViewModel
3232
* Generate animation from Animation Tool's JSON
3333
*/
3434
const homeContent = homeButtonTemplate();
35-
view.addChild(homeButtonTemplate());
35+
view.addChild(homeContent);
3636

3737
/**
3838
* Hello, Worldのテキストを生成

0 commit comments

Comments
 (0)