@next2d/vite-plugin-next2d-auto-loader 3.1.10 → 3.1.12
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.
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -207,7 +207,7 @@ const buildPackage = () => {
|
|
|
207
207
|
packages += `${EOL}]`;
|
|
208
208
|
let source = `${imports}${EOL}`;
|
|
209
209
|
source += ext === "ts"
|
|
210
|
-
? `const packages:
|
|
210
|
+
? `const packages: [string, new (...args: any[]) => any][] = ${packages};${EOL}`
|
|
211
211
|
: `const packages = ${packages};${EOL}`;
|
|
212
212
|
source += "export { packages };";
|
|
213
213
|
if ($cachePackages !== source) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next2d/vite-plugin-next2d-auto-loader",
|
|
3
3
|
"description": "Next2D Framework vite TypeScript Auto Loader plugin.",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.12",
|
|
5
5
|
"homepage": "https://next2d.app",
|
|
6
6
|
"bugs": "https://github.com/Next2D/vite-plugin-next2d-auto-loader/issues",
|
|
7
7
|
"author": "Toshiyuki Ienaga<ienaga@next2d.app>",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@eslint/eslintrc": "^3.3.3",
|
|
35
|
-
"@eslint/js": "^9.39.
|
|
36
|
-
"@types/node": "^
|
|
37
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
38
|
-
"@typescript-eslint/parser": "^8.
|
|
39
|
-
"eslint": "^9.39.
|
|
35
|
+
"@eslint/js": "^9.39.2",
|
|
36
|
+
"@types/node": "^25.0.3",
|
|
37
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
38
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
39
|
+
"eslint": "^9.39.2",
|
|
40
40
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
41
41
|
"globals": "^16.5.0",
|
|
42
42
|
"typescript": "^5.9.3"
|