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 +1 -1
- package/dist/index.js +2 -4
- package/package.json +1 -1
package/LICENSE
CHANGED
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
|
-
"
|
|
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",
|