From 3f7aea4b45b41e62ff692e05f11e167943c26ec3 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Wed, 5 Sep 2018 16:48:48 +0200 Subject: [PATCH] wrench: Fixed typo in package.json scripts --- packages/plugin-debug/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/plugin-debug/package.json b/packages/plugin-debug/package.json index 3e4b0cb0262..45acc054710 100644 --- a/packages/plugin-debug/package.json +++ b/packages/plugin-debug/package.json @@ -20,9 +20,9 @@ "unpkg": "dist/browser.js", "module": "dist/index.mjs", "scripts": { - "patch": "npm version patch -m ':bookmark: v%s; && npm run build", - "minor": "npm version minor -m ':bookmark: v%s; && npm run build", - "major": "npm version major -m ':bookmark: v%s; && npm run build", + "patch": "npm version patch -m ':bookmark: v%s' && npm run build", + "minor": "npm version minor -m ':bookmark: v%s' && npm run build", + "major": "npm version major -m ':bookmark: v%s' && npm run build", "precommit": "npm run pretty && lint-staged", "test": "echo \"Error: no test specified\" && exit 1", "clean": "rimraf dist",