create-next2d-app 2.0.1 → 2.0.2

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Next2D
3
+ Copyright (c) 2021 - 2023 Next2D
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/dist/index.js CHANGED
@@ -277,6 +277,7 @@ const createApp = (app_name, template = "@next2d/framework-template") => {
277
277
  "build:steam:macos": "npx @next2d/builder --platform steam:macos --env prd",
278
278
  "build:steam:linux": "npx @next2d/builder --platform steam:linux --env prd",
279
279
  "build:web": "npx @next2d/builder --platform web --env prd",
280
+ "build": "npx @next2d/builder",
280
281
  "test": "npx vitest",
281
282
  "generate": "npx @next2d/view-generator"
282
283
  }
@@ -317,7 +318,7 @@ const createApp = (app_name, template = "@next2d/framework-template") => {
317
318
  "*.sw?",
318
319
  "src/config/Config.*",
319
320
  "src/Packages.*",
320
- "electron.index.json"
321
+ "electron/resources"
321
322
  ];
322
323
  fs.writeFileSync(path.join(root, ".gitignore"), ignoreList.join(os.EOL));
323
324
  install(root, appName, template, [
@@ -327,7 +328,6 @@ const createApp = (app_name, template = "@next2d/framework-template") => {
327
328
  "jsdom",
328
329
  "vite",
329
330
  "vitest",
330
- "electron",
331
331
  "@capacitor/cli",
332
332
  "@capacitor/core",
333
333
  "@capacitor/ios",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-next2d-app",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Create Next2D apps with no build configuration.",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp>",
6
6
  "license": "MIT",