This commit is contained in:
Jarred Sumner
2021-09-15 19:00:41 -07:00
parent 2a98c323c1
commit dcabe86ea8
4 changed files with 6 additions and 6 deletions

View File

@@ -84,9 +84,9 @@ release-cli-push:
npm publish /tmp/bun-cli-$(PACKAGE_JSON_VERSION).tgz
release-mac-push:
cd packages/bun-cli-darwin-x64 && npm pack --pack-destination /tmp/
gh release upload $(BUN_BUILD_TAG) --clobber /tmp/bun-cli-darwin-x64-$(PACKAGE_JSON_VERSION).tgz
npm publish /tmp/bun-cli-darwin-x64-$(PACKAGE_JSON_VERSION).tgz
cd $(PACKAGE_DIR) && npm pack --pack-destination /tmp/
gh release upload $(BUN_BUILD_TAG) --clobber /tmp/bun-cli-$(TRIPLET)-$(PACKAGE_JSON_VERSION).tgz
npm publish /tmp/bun-cli-$(TRIPLET)-$(PACKAGE_JSON_VERSION).tgz
jsc-copy-headers:

View File

@@ -1 +1 @@
12
13

View File

@@ -4,5 +4,5 @@
},
"name": "bun-cli-darwin-x64",
"repository": "https://github.com/jarred-sumner/bun",
"version": "0.0.0-12"
"version": "0.0.0-13"
}

View File

@@ -9,5 +9,5 @@
"postinstall": "node postinstall.js",
"prepublishOnly": "rm -rf ./bin/bun; chmod +x ./reset-bin.js; cp ./reset-bin.js ./bin/bun"
},
"version": "0.0.0-12"
"version": "0.0.0-13"
}