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
If npmScript is explicitly set, it should be respected, and not overridden regardless of what packages are installed. In addition to that problem, its behavior is just wrong. If vue-cli-plugin-tauri is installed, this action will always call the wrong command. If yarn is detected (which is isn't for me because of #161), it just calls yarn, which doesn't actually build anything. If it isn't detected, then it calls npx run tauri:build, which is also wrong because the NPM package run expects a path to a script, not a package.json script. This was probably intended to be npm, not npx.
The text was updated successfully, but these errors were encountered:
If npmScript is explicitly set, it should be respected, and not overridden regardless of what packages are installed. In addition to that problem, its behavior is just wrong. If
vue-cli-plugin-tauri
is installed, this action will always call the wrong command. If yarn is detected (which is isn't for me because of #161), it just callsyarn
, which doesn't actually build anything. If it isn't detected, then it callsnpx run tauri:build
, which is also wrong because the NPM packagerun
expects a path to a script, not a package.json script. This was probably intended to benpm
, notnpx
.The text was updated successfully, but these errors were encountered: