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
Application built with universal architecture runs the correct architecture
Actual behavior
Uncaught exception as the script tries to utilize a function from undefined variable.
Issue introduced in v1.4.4 / #83, as typescript compiles to use path.default.basename(appPath) rather than the expected path.basename(appPath)
Steps to reproduce
Build a universal application, make & run it.
Or you can build the package, and see that path_1.default.basename gets generated rather than the expected path.basename
Additional information
The text was updated successfully, but these errors were encountered:
Node version
16.17.1
Electron Universal version
1.4.4
Expected behavior
Application built with universal architecture runs the correct architecture
Actual behavior
Uncaught exception as the script tries to utilize a function from undefined variable.
Issue introduced in v1.4.4 / #83, as typescript compiles to use
path.default.basename(appPath)
rather than the expectedpath.basename(appPath)
Steps to reproduce
Build a universal application, make & run it.
Or you can build the package, and see that
path_1.default.basename
gets generated rather than the expectedpath.basename
Additional information
The text was updated successfully, but these errors were encountered: