Skip to content

Commit 4f1b685

Browse files
authored
Merge pull request #10 from ArweaveTeam/fix-publish3
Fix publish3
2 parents 22c1fc4 + b0ae8df commit 4f1b685

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Makefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,11 @@ else
5353
endif
5454
endif
5555

56+
5657
clean:
57-
@$(CLEAN_CMD)
58+
@for dir in $(DIRS_TO_REMOVE); do \
59+
rm -rf "$$dir" 2>/dev/null; \
60+
done
5861

5962
# cross platform pwsh
6063
clean-cp:
@@ -101,3 +104,6 @@ build: $(OUTPUT_DIR) $(LIBSECP256K1.JS) $(LIBSECP256K1.WASM) $(LIBSECP256K1.GLUE
101104

102105
publish:
103106
@npm publish
107+
108+
publish-local: clean build
109+
@npm publish

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arweave/wasm-secp256k1",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "Minimal wrapper around libsecp256k1 library (https://github.com/bitcoin-core/secp256k1).",
55
"license": "MIT",
66
"main": "dist/main.cjs",

0 commit comments

Comments
 (0)