I use build.ts to build releases for all of ZVM's supported platforms, but the Deno.run() API is being depreciated in Deno 2. I need to update the call to use the new Deno.Command() API before Deno 2 releases.
A successful PR would follow the contributing guide by running deno fmt . before submission, and by not tweaking the functionality of the file, just replacing this particular API so the script behaves in the exact same way.
I use
build.ts
to build releases for all of ZVM's supported platforms, but theDeno.run()
API is being depreciated in Deno 2. I need to update the call to use the new Deno.Command() API before Deno 2 releases.A successful PR would follow the contributing guide by running
deno fmt .
before submission, and by not tweaking the functionality of the file, just replacing this particular API so the script behaves in the exact same way.