diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | packages/bun-cli-darwin-aarch64/.npmignore | 4 | ||||
-rw-r--r-- | packages/bun-cli-darwin-x64/.npmignore | 4 | ||||
-rw-r--r-- | packages/bun-cli-linux-x64/.npmignore | 4 | ||||
-rw-r--r-- | packages/bun-cli-linux-x64/package.json | 8 |
5 files changed, 21 insertions, 1 deletions
@@ -24,7 +24,7 @@ CXX := clang++ -STRIP ?= $(shell which llvm-strip || which llvm-strip-12 || echo "Missing llvm-strip. Please pass it in the STRIP environment var"; exit 1) +STRIP ?= $(shell which llvm-strip || which llvm-strip-12 || echo "Missing llvm-strip. Please pass it in the STRIP environment var"; exit 1;) diff --git a/packages/bun-cli-darwin-aarch64/.npmignore b/packages/bun-cli-darwin-aarch64/.npmignore new file mode 100644 index 000000000..08d23cb2a --- /dev/null +++ b/packages/bun-cli-darwin-aarch64/.npmignore @@ -0,0 +1,4 @@ +bin/bun-profile +bin/*.o +*.o +*.a
\ No newline at end of file diff --git a/packages/bun-cli-darwin-x64/.npmignore b/packages/bun-cli-darwin-x64/.npmignore new file mode 100644 index 000000000..08d23cb2a --- /dev/null +++ b/packages/bun-cli-darwin-x64/.npmignore @@ -0,0 +1,4 @@ +bin/bun-profile +bin/*.o +*.o +*.a
\ No newline at end of file diff --git a/packages/bun-cli-linux-x64/.npmignore b/packages/bun-cli-linux-x64/.npmignore new file mode 100644 index 000000000..08d23cb2a --- /dev/null +++ b/packages/bun-cli-linux-x64/.npmignore @@ -0,0 +1,4 @@ +bin/bun-profile +bin/*.o +*.o +*.a
\ No newline at end of file diff --git a/packages/bun-cli-linux-x64/package.json b/packages/bun-cli-linux-x64/package.json new file mode 100644 index 000000000..7005545aa --- /dev/null +++ b/packages/bun-cli-linux-x64/package.json @@ -0,0 +1,8 @@ +{ + "directories": { + "bin": "bin" + }, + "name": "bun-cli-linux-x64", + "repository": "https://github.com/jarred-sumner/bun", + "version": "0.0.0-11" +} |