pkg(bun-1.1.20): Added bun 1.1.20
This commit is contained in:
parent
59338eee33
commit
e58a42cc97
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
curl -L "https://github.com/oven-sh/bun/releases/download/bun-v1.1.20/bun-linux-x64.zip" -o bun.zip
|
||||
unzip bun.zip
|
||||
rm bun.zip
|
||||
|
||||
cp -r bun-linux-x64/* .
|
||||
rm -rf bun-linux-x64
|
||||
|
||||
chmod +x bun
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
export PATH=$PWD:$PATH
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"language": "bun",
|
||||
"version": "1.1.20",
|
||||
"dependencies": {},
|
||||
"provides": [
|
||||
{
|
||||
"language": "typescript",
|
||||
"aliases": [
|
||||
"bun",
|
||||
"bun-ts"
|
||||
]
|
||||
},
|
||||
{
|
||||
"language": "javascript",
|
||||
"aliases": [
|
||||
"bun-js"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
bun "$@"
|
|
@ -0,0 +1 @@
|
|||
console.log("OK")
|
Loading…
Reference in New Issue