diff options
author | 2023-09-07 10:57:46 -0700 | |
---|---|---|
committer | 2023-09-07 10:57:46 -0700 | |
commit | 5b9d8b87c41410091a7c602b895ad9ffda17819c (patch) | |
tree | f1eff4aede9abde4226487eb07c243a7c3806d32 /src/js/_codegen/index.ts | |
parent | a7c3bc8a5a79952b99dc1a87d3d5f6cd0056a54d (diff) | |
download | bun-5b9d8b87c41410091a7c602b895ad9ffda17819c.tar.gz bun-5b9d8b87c41410091a7c602b895ad9ffda17819c.tar.zst bun-5b9d8b87c41410091a7c602b895ad9ffda17819c.zip |
Bump version to Bun 1.0.0 (#4543)
* hi
* Update Version to 1.0.0
* 2
---------
Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com>
Diffstat (limited to 'src/js/_codegen/index.ts')
-rw-r--r-- | src/js/_codegen/index.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/js/_codegen/index.ts b/src/js/_codegen/index.ts index 15fa7defd..4e048b144 100644 --- a/src/js/_codegen/index.ts +++ b/src/js/_codegen/index.ts @@ -1,12 +1,2 @@ -const [major, minor] = Bun.version - .split("_")[0] - .split(".") - .map(x => parseInt(x)); - -if (minor < 8) { - console.error("Please install bun >= 0.8.0"); - process.exit(1); -} - import "./build-modules"; import "./build-functions"; |