From f015a91507303083b31c6567a556562cf4f2774f Mon Sep 17 00:00:00 2001 From: Thaddeus Diamond Date: Thu, 7 Sep 2023 22:44:20 -0500 Subject: [PATCH] fix(package.json): Cleanup publish task --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index b729f3a7..3d2df09e 100644 --- a/deno.json +++ b/deno.json @@ -2,7 +2,7 @@ "tasks": { "build": "deno run --allow-env --allow-write --allow-read --allow-net --allow-run build.ts", "build:core": "cd src/core/libs/cardano_multiplatform_lib && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./; cd ../cardano_message_signing && deno run -A https://raw.githubusercontent.com/spacebudz/wasmbuild/a0fec73985b0f0a9120b5077e292963d513795d4/main.ts --out ./", - "publish": "deno task build && deno task test && npm publish dist", + "publish": "deno task build && deno task test && npm publish dist/", "test": "deno test --allow-env --allow-read --allow-net tests", "test:core": "cd src/core/libs/cardano_multiplatform_lib && cargo test; cd ../cardano_message_signing && cargo test" },