create-next2d-app 1.0.8 → 1.0.9
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/README.md +4 -3
- package/index.js +5 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
Create Next2D App
|
|
2
|
+
=============
|
|
3
|
+
|
|
1
4
|
[](https://github.com/Next2D/create-next2d-app/actions/workflows/codeql-analysis.yml)
|
|
5
|
+
[](https://github.com/Next2D/create-next2d-app/actions/workflows/lint.yml)
|
|
2
6
|
[](https://github.com/Next2D/create-next2d-app/releases)
|
|
3
7
|
[](https://github.com/Next2D/create-next2d-app/blob/main/LICENSE)
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
# Create Next2D App
|
|
7
|
-
|
|
8
9
|
Create Next2D apps with no build configuration.
|
|
9
10
|
|
|
10
11
|
## Quick Start
|
package/index.js
CHANGED
|
@@ -377,7 +377,11 @@ const createApp = function (app_name, template = "@next2d/framework-template")
|
|
|
377
377
|
"@next2d/env",
|
|
378
378
|
"webpack",
|
|
379
379
|
"webpack-cli",
|
|
380
|
-
"webpack-dev-server"
|
|
380
|
+
"webpack-dev-server",
|
|
381
|
+
"@babel/core",
|
|
382
|
+
"@babel/preset-env",
|
|
383
|
+
"eslint",
|
|
384
|
+
"eslint-webpack-plugin"
|
|
381
385
|
]);
|
|
382
386
|
};
|
|
383
387
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-next2d-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "Create Next2D apps with no build configuration.",
|
|
5
5
|
"author": "Toshiyuki Ienaga<ienaga@tvon.jp>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -30,6 +30,6 @@
|
|
|
30
30
|
"validate-npm-package-name": "3.0.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"eslint": "^8.
|
|
33
|
+
"eslint": "^8.1.0"
|
|
34
34
|
}
|
|
35
35
|
}
|