From 5550b3eea390148e9e5683ec214bddae7531a405 Mon Sep 17 00:00:00 2001 From: Lev Chelyadinov Date: Tue, 9 Jun 2020 16:53:16 +0300 Subject: [PATCH] fix: quotes in the release script (#173) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1c0f6856..40d78aed 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "format": "prettier --loglevel silent --write \"{src,test}/**/*.ts\" && eslint --fix \"{src,test}/**/*.ts\"", "postinstall": "echo \"[svelte-preprocess] Don't forget to install the preprocessors packages that will be used: node-sass/sass, stylus, less, postcss & postcss-load-config, coffeescript, pug, etc...\"", "version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md", - "tag": "git tag -a v$npm_package_version -m 'Release v$npm_package_version'", + "tag": "git tag -a v$npm_package_version -m \"Release v$npm_package_version\"", "release": "npm run version && yarn && git add package.json yarn.lock && git commit -m \"chore(release): v$npm_package_version :tada:\"", "minify": "babel-minify dist -d dist", "prepublishOnly": "npm run test && npm run build && npm run minify && npm run release && npm run tag"