From 90462b6d22c2bbbe55b3b7583a00ed202cec18af Mon Sep 17 00:00:00 2001 From: Gido Manders Date: Thu, 20 Oct 2022 11:58:16 +0200 Subject: [PATCH] fix: remove otp option from release script The otp option given to np in the release script now requires an actual one time password code, or the option should be omitted as the default for npm is now to always ask for a 2FA code. Removed otp option from release script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 54b5c02..8576429 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "lint": "npm run lint:test && npm run lint:src", "lint:test": "eslint \"tests/**\" --max-warnings=0", "lint:src": "eslint \"src/**\" --max-warnings=0", - "release": "npm run tsc && np --otp", + "release": "npm run tsc && np", "dev:publish": "./scripts/dev-publish.sh", "version": "npm run tsc && jekyll build", "prepare": "husky install"