Merge pull request #566 from LoryPelli/deno-1.32.3

Updated to `Deno 1.32.3`
This commit is contained in:
Thomas Hobson 2023-04-07 23:39:21 +12:00 committed by GitHub
commit f5cbf29ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 32 additions and 0 deletions

5
packages/deno/1.32.3/build.sh vendored Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
curl -OL https://github.com/denoland/deno/releases/download/v1.32.3/deno-x86_64-unknown-linux-gnu.zip
unzip -o deno-x86_64-unknown-linux-gnu.zip
rm deno-x86_64-unknown-linux-gnu.zip

3
packages/deno/1.32.3/environment vendored Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
export PATH=$PWD:$PATH

20
packages/deno/1.32.3/metadata.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
"language": "deno",
"version": "1.32.3",
"dependencies": {},
"provides": [
{
"language": "typescript",
"aliases": [
"deno",
"deno-ts"
]
},
{
"language": "javascript",
"aliases": [
"deno-js"
]
}
]
}

3
packages/deno/1.32.3/run vendored Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
DENO_DIR=$PWD NO_COLOR=true deno run $@

1
packages/deno/1.32.3/test.deno.ts vendored Normal file
View File

@ -0,0 +1 @@
console.log("OK")