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
Is the make target dist intended to be built without making all before? I tried building the dist files, to test deploying a shinylive app with the newest assets. It seems to be necessary to build the make target all before making dist.
If this is intended behavior, please clarify in the build instructions in the README.md or if not add the necessary dependencies to the dist target.
make submodules
make dist
Fails with error:
node_modules/.bin/tsx scripts/build.ts
make: node_modules/.bin/tsx: Command not found
make: *** [Makefile:203: buildjs] Error 127
Works:
make submodules
make all
make dist
All in all, the build process is really well setup and building worked quickly, so this is probably a minor issue.
The text was updated successfully, but these errors were encountered:
Is the make target dist intended to be built without making
all
before? I tried building the dist files, to test deploying a shinylive app with the newest assets. It seems to be necessary to build the make target all before making dist.If this is intended behavior, please clarify in the build instructions in the README.md or if not add the necessary dependencies to the dist target.
Fails with error:
Works:
All in all, the build process is really well setup and building worked quickly, so this is probably a minor issue.
The text was updated successfully, but these errors were encountered: