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
with deno 1.4 update the way installable scripts are generated change, before a trex.cmd file was generated with the following:
% generated by deno install %@deno.exe "run""--allow-read""--allow-write""--allow-net""--allow-env""--allow-run""--allow-plugin""--allow-hrtime""--unstable""https://deno.land/x/[email protected]/cli.ts"%*
this points directly to the url of the cli
now, deno install creates a trex.js file this is a bundler of the whole cli and the file points directly to this bundler but these are being generated with errors.
% generated by deno install %@deno.exe "run""--allow-read""--allow-write""--allow-net""--allow-env""--allow-run""--allow-plugin""--allow-hrtime""--unstable""C:\Users\****\.deno\bin\trex.js"%*
If after installation or update trex does not work, replace the absolute path of the bundler file with the URL of the latest version of trex.
url of the latest version: https://deno.land/x/[email protected]/cli.ts
The text was updated successfully, but these errors were encountered:
denoland/deno#7455
with deno 1.4 update the way installable scripts are generated change, before a trex.cmd file was generated with the following:
this points directly to the url of the cli
now, deno install creates a trex.js file this is a bundler of the whole cli and the file points directly to this bundler but these are being generated with errors.
If after installation or update trex does not work, replace the absolute path of the bundler file with the URL of the latest version of trex.
url of the latest version:
https://deno.land/x/[email protected]/cli.ts
The text was updated successfully, but these errors were encountered: