We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 22c1fc4 + b0ae8df commit 4f1b685Copy full SHA for 4f1b685
Makefile
@@ -53,8 +53,11 @@ else
53
endif
54
55
56
+
57
clean:
- @$(CLEAN_CMD)
58
+ @for dir in $(DIRS_TO_REMOVE); do \
59
+ rm -rf "$$dir" 2>/dev/null; \
60
+ done
61
62
# cross platform pwsh
63
clean-cp:
@@ -101,3 +104,6 @@ build: $(OUTPUT_DIR) $(LIBSECP256K1.JS) $(LIBSECP256K1.WASM) $(LIBSECP256K1.GLUE
101
104
102
105
publish:
103
106
@npm publish
107
108
+publish-local: clean build
109
+ @npm publish
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@arweave/wasm-secp256k1",
3
- "version": "0.0.5",
+ "version": "0.0.6",
4
"description": "Minimal wrapper around libsecp256k1 library (https://github.com/bitcoin-core/secp256k1).",
5
"license": "MIT",
6
"main": "dist/main.cjs",
0 commit comments