create-next2d-app 2.0.1 → 2.0.3

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
  }
@@ -315,9 +316,7 @@ const createApp = (app_name, template = "@next2d/framework-template") => {
315
316
  "*.njsproj",
316
317
  "*.sln",
317
318
  "*.sw?",
318
- "src/config/Config.*",
319
- "src/Packages.*",
320
- "electron.index.json"
319
+ "electron/resources"
321
320
  ];
322
321
  fs.writeFileSync(path.join(root, ".gitignore"), ignoreList.join(os.EOL));
323
322
  install(root, appName, template, [
@@ -327,7 +326,6 @@ const createApp = (app_name, template = "@next2d/framework-template") => {
327
326
  "jsdom",
328
327
  "vite",
329
328
  "vitest",
330
- "electron",
331
329
  "@capacitor/cli",
332
330
  "@capacitor/core",
333
331
  "@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.3",
4
4
  "description": "Create Next2D apps with no build configuration.",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp>",
6
6
  "license": "MIT",