@next2d/view-generator 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +5 -6
package/dist/index.js CHANGED
@@ -154,7 +154,7 @@ export class ${name}ViewModel extends ViewModel
154
154
  {
155
155
  return this
156
156
  .factory(view)
157
- .then((view): Promise<View> =>
157
+ .then((view: View): Promise<View> =>
158
158
  {
159
159
  return Promise.resolve(view);
160
160
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/view-generator",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Generate the View class required for routing.",
5
5
  "author": "Toshiyuki Ienaga<ienaga@next2d.app>",
6
6
  "license": "MIT",
@@ -14,7 +14,6 @@
14
14
  "view-generator"
15
15
  ],
16
16
  "scripts": {
17
- "lint": "eslint src/index.ts",
18
17
  "publish": "tsc"
19
18
  },
20
19
  "files": [
@@ -28,13 +27,13 @@
28
27
  "@next2d/view-generator": "dist/index.js"
29
28
  },
30
29
  "devDependencies": {
31
- "@typescript-eslint/eslint-plugin": "^6.9.1",
32
- "@typescript-eslint/parser": "^6.9.1",
33
- "eslint": "^8.22.0",
30
+ "@typescript-eslint/eslint-plugin": "^6.10.0",
31
+ "@typescript-eslint/parser": "^6.10.0",
32
+ "eslint": "^8.53.0",
34
33
  "typescript": "^5.2.2"
35
34
  },
36
35
  "dependencies": {
37
- "@types/node": "^20.8.10",
36
+ "@types/node": "^20.9.0",
38
37
  "picocolors": "^1.0.0"
39
38
  }
40
39
  }