Compare commits

..

4 Commits

Author SHA1 Message Date
Thomas Hobson 3a2dc74586
Merge pull request #395 from VlaDexa/updated-deno
pkg(deno-1.16.2): Added deno 1.16.2
2021-11-25 19:00:24 +13:00
VlaDexa 81c6694637 pkg(deno-1.16.2): Set the cache directory 2021-11-21 23:27:59 +03:00
VlaDexa ed14e125e3 pkg(deno-1.16.2): Fix the test file 2021-11-21 23:18:39 +03:00
VlaDexa aeddcc7661 pkg(deno-1.16.2): Added deno 1.16.2 2021-11-21 21:39:40 +03:00
5 changed files with 32 additions and 0 deletions

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

@ -0,0 +1,5 @@
#!/bin/bash
curl -OL https://github.com/denoland/deno/releases/download/v1.16.2/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.16.2/environment vendored Normal file
View File

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

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

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

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

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

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

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