From d3c63931ab389f5e8fc0ca4d3fc0d1537a6db731 Mon Sep 17 00:00:00 2001 From: Neil Kalman Date: Mon, 15 Jul 2019 02:13:15 +0300 Subject: [PATCH] fix: change to npm start because of variable interpolation lol.... these things always takes so many commits to get right ^^;;; --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 7119e20..4661046 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,7 @@ "start:dev": "ts-node ./src/announce-it-cli.ts", "start": "node ./bin/announce-it-cli.js", "test:watch": "jest --watchAll --coverage", - "test": "jest --coverage", - "announce": "npm start" + "test": "jest --coverage" }, "repository": { "type": "git", @@ -74,7 +73,7 @@ [ "@semantic-release/exec", { - "successCmd": "npm run announce -- --branch ${options.branch}" + "successCmd": "npm start -- --branch ${options.branch}" } ] ],