mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 12:07:49 +02:00
Merge c91b8645de
into 4e361dcf92
This commit is contained in:
commit
7f55bed514
5 changed files with 37 additions and 0 deletions
10
packages/bun/1.1.20/build.sh
vendored
Normal file
10
packages/bun/1.1.20/build.sh
vendored
Normal file
|
@ -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
|
3
packages/bun/1.1.20/environment
vendored
Normal file
3
packages/bun/1.1.20/environment
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
export PATH=$PWD:$PATH
|
20
packages/bun/1.1.20/metadata.json
vendored
Normal file
20
packages/bun/1.1.20/metadata.json
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"language": "bun",
|
||||||
|
"version": "1.1.20",
|
||||||
|
"dependencies": {},
|
||||||
|
"provides": [
|
||||||
|
{
|
||||||
|
"language": "typescript",
|
||||||
|
"aliases": [
|
||||||
|
"bun",
|
||||||
|
"bun-ts"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"language": "javascript",
|
||||||
|
"aliases": [
|
||||||
|
"bun-js"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
3
packages/bun/1.1.20/run
vendored
Normal file
3
packages/bun/1.1.20/run
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
bun "$@"
|
1
packages/bun/1.1.20/test.bun.ts
vendored
Normal file
1
packages/bun/1.1.20/test.bun.ts
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
console.log("OK")
|
Loading…
Add table
Add a link
Reference in a new issue