You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi! i'm migrating better-sqlite3 only app to better-sqlite3 + reflectmeta + typeorm 0.3.20 based project
(following this article )[https://dev.to/anyo/handling-typeorm-migrations-in-electron-apps-7d3]
but unable to install those in nextron, is there any way to do that?
plus. i'm reporting error in nextron-chakraui pnpm example
to reproduce, use npm build or pnpm build
here's the build logs
[nextron] Building main process
assets by status 6.96 KiB [cached] 2 assets
orphan modules 4.01 KiB [orphan] 4 modules
runtime modules 663 bytes 3 modules
built modules 5.42 KiB [built]
modules by path ./main/*.ts 5.33 KiB
./main/background.ts + 4 modules 4.89 KiB [not cacheable] [built] [code generated]
./main/preload.ts + 1 modules 455 bytes [not cacheable] [built] [code generated]
external "electron-serve" 42 bytes [built] [code generated]
external "electron-store" 42 bytes [built] [code generated]
ERROR in ./main/helpers/create-window.ts 1:0-76
Module not found: Error: Can't resolve '@babel/runtime-corejs3/helpers/defineProperty' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 2:33-45
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/keys' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 2:54-83
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 2:139-162
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/instance/filter' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 2:196-228
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 3:157-181
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/instance/for-each' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 3:283-316
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 3:319-343
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/define-properties' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 3:475-497
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/define-property' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 4:0-81
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/object/assign' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
ERROR in ./main/helpers/create-window.ts 5:0-88
Module not found: Error: Can't resolve '@babel/runtime-corejs3/core-js-stable/instance/some' in 'C:\Users\sing\Desktop\awesome\electron\sourcing-spear-app\main\helpers'
@ ./main/helpers/index.ts 1:0-32 1:0-32
@ ./main/background.ts 4:0-41 16:21-33
11 errors have detailed information that is not shown.
Use 'stats.errorDetails: true' resp. '--stats-error-details' to show it.
[nextron] Packaging - please wait a moment
• electron-builder version=24.13.3 os=10.0.26100
• loaded configuration file=C:\Users\user\Desktop\awesome\electron\app\electron-builder.yml
• writing effective config file=dist\builder-effective-config.yaml
• packaging platform=win32 arch=x64 electron=34.0.1 appOutDir=dist\win-unpacked
⨯ Application entry file "app\background.js" in the "C:\Users\user\Desktop\my\electron\app\dist\win-unpacked\resources\app.asar" does not exist. Seems like a wrong configuration. failedTask=build stackTrace=Error: Application entry file "app\background.js" in the "C:\Users\user\Desktop\awesome\electron\app\dist\win-unpacked\resources\app.asar" does not exist. Seems like a wrong configuration.
at error (C:\Users\user\Desktop\awesome\electron\app\node_modules\.pnpm\[email protected][email protected][email protected]\node_modules\app-builder-lib\src\asar\asarFileChecker.ts:7:12)
...
Cannot build electron packages:
Error: Command failed with exit code 1: electron-builder
The text was updated successfully, but these errors were encountered:
hi! i'm migrating better-sqlite3 only app to better-sqlite3 + reflectmeta + typeorm 0.3.20 based project
(following this article )[https://dev.to/anyo/handling-typeorm-migrations-in-electron-apps-7d3]
but unable to install those in nextron, is there any way to do that?
plus. i'm reporting error in nextron-chakraui pnpm example
to reproduce, use npm build or pnpm build
here's the build logs
The text was updated successfully, but these errors were encountered: