From 3cd56ab3b209b241415074f989d0f2f38466b335 Mon Sep 17 00:00:00 2001 From: Enrico Regge Date: Wed, 8 Sep 2021 00:05:36 +0200 Subject: [PATCH] fix(build): remove dry-run flag to enable npm publish --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a71d5ed..2732868 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "lint-fix": "npm run eslint:fix && npm run tslint:fix", "build": "tsc && cp package.json dist/", "prepublishOnly": "npm run build", - "postversion": "publisher --no-checks --dry-run", + "postversion": "publisher --no-checks", "jest": "jest", "test": "npm run build && npm run lint && jest test/", "test-unit": "npm run build && jest test/unit/",