We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c9340c + bd66261 commit c17568bCopy full SHA for c17568b
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@next2d/framework-typescript-template",
3
"description": "Next2D Framework default TypeScript template.",
4
- "version": "2.0.8",
+ "version": "2.0.9",
5
"homepage": "https://next2d.app",
6
"bugs": "https://github.com/Next2D/framework-typescript-template/issues/new",
7
"author": "Toshiyuki Ienaga<ienaga@next2d.app>",
template/package.json
@@ -19,19 +19,19 @@
19
"generate": "npx @next2d/view-generator"
20
},
21
"devDependencies": {
22
- "@capacitor/android": "^5.5.1",
23
- "@capacitor/cli": "^5.5.1",
24
- "@capacitor/core": "^5.5.1",
25
- "@capacitor/ios": "^5.5.1",
26
- "@next2d/framework": "^2.0.1",
27
- "@next2d/player": "^1.18.9",
+ "@capacitor/android": "^5.7.0",
+ "@capacitor/cli": "^5.7.0",
+ "@capacitor/core": "^5.7.0",
+ "@capacitor/ios": "^5.7.0",
+ "@next2d/framework": "^2.0.2",
+ "@next2d/player": "^1.18.11",
28
"@next2d/vite-auto-loader-plugin": "^1.0.0",
29
- "@typescript-eslint/eslint-plugin": "^6.10.0",
30
- "@typescript-eslint/parser": "^6.10.0",
31
- "eslint": "^8.53.0",
32
- "jsdom": "^22.1.0",
33
- "typescript": "^5.2.2",
34
- "vite": "^4.5.0",
35
- "vitest": "^0.34.6"
+ "@typescript-eslint/eslint-plugin": "^7.0.1",
+ "@typescript-eslint/parser": "^7.0.1",
+ "eslint": "^8.56.0",
+ "jsdom": "^24.0.0",
+ "typescript": "^5.3.3",
+ "vite": "^5.1.2",
+ "vitest": "^1.2.2"
36
}
37
template/vite.config.ts
@@ -4,7 +4,6 @@ import { defineConfig } from "vite";
import path from "path";
import autoLoader from "@next2d/vite-auto-loader-plugin";
-const port: number = 5173;
8
export default defineConfig({
9
"base": "./",
10
"optimizeDeps": {
@@ -27,14 +26,14 @@ export default defineConfig({
],
"server": {
"open": "index.html",
- "port": port,
+ "port": 5173,
"proxy": {
"/content": {
- "target": `http://localhost:${port}`,
+ "target": "http://localhost:5173",
"rewrite": (path) => path.replace(/^\/content/, "/mock/content")
"/api": {
38
"rewrite": (path) => path.replace(/^\/api/, "/mock/api")
39
40
0 commit comments