aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/detect-libc.linux.js
diff options
context:
space:
mode:
authorGravatar dave caruso <me@paperdave.net> 2023-06-01 21:16:47 -0400
committerGravatar GitHub <noreply@github.com> 2023-06-01 18:16:47 -0700
commit4df1d37ddc54242c339765f22fb90ba2e9e3a99a (patch)
treed63ede76463e7ecba78a4d4b31e5e8158193552f /src/bun.js/detect-libc.linux.js
parent03ffd1c732aaaa30b5481f197221ce96da559e63 (diff)
downloadbun-4df1d37ddc54242c339765f22fb90ba2e9e3a99a.tar.gz
bun-4df1d37ddc54242c339765f22fb90ba2e9e3a99a.tar.zst
bun-4df1d37ddc54242c339765f22fb90ba2e9e3a99a.zip
Bundle and minify `.exports.js` files. (#3036)
* move all exports.js into src/js * finalize the sort of this * and it works * add test.ts to gitignore * okay * convert some to ts just to show * finish up * fixup makefile * minify syntax in dev * finish rebase * dont minify all modules * merge * finish rebase merge * flaky test that hangs
Diffstat (limited to 'src/bun.js/detect-libc.linux.js')
-rw-r--r--src/bun.js/detect-libc.linux.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/bun.js/detect-libc.linux.js b/src/bun.js/detect-libc.linux.js
deleted file mode 100644
index 3a46ffda0..000000000
--- a/src/bun.js/detect-libc.linux.js
+++ /dev/null
@@ -1,27 +0,0 @@
-// bun only supports glibc at the time of writing
-export function family() {
- return Promise.resolve(GLIBC);
-}
-
-export function familySync() {
- return GLIBC;
-}
-
-export const GLIBC = "glibc";
-export const MUSL = "musl";
-
-export function versionAsync() {
- return Promise.resolve(version());
-}
-
-export function version() {
- return "2.29";
-}
-
-export function isNonGlibcLinuxSync() {
- return false;
-}
-
-export function isNonGlibcLinux() {
- return Promise.resolve(isNonGlibcLinuxSync());
-}