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.
Files changed (3) hide show
  1. package/README.md +4 -3
  2. package/index.js +5 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,11 @@
1
+ Create Next2D App
2
+ =============
3
+
1
4
  [![CodeQL](https://github.com/Next2D/create-next2d-app/actions/workflows/codeql-analysis.yml/badge.svg?branch=main)](https://github.com/Next2D/create-next2d-app/actions/workflows/codeql-analysis.yml)
5
+ [![Lint](https://github.com/Next2D/create-next2d-app/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/Next2D/create-next2d-app/actions/workflows/lint.yml)
2
6
  [![release](https://img.shields.io/github/v/release/Next2D/create-next2d-app)](https://github.com/Next2D/create-next2d-app/releases)
3
7
  [![license](https://img.shields.io/github/license/Next2D/create-next2d-app)](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.8",
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.0.0"
33
+ "eslint": "^8.1.0"
34
34
  }
35
35
  }