open source is social v-it.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix release target shell quoting

+7 -3
+7 -3
Makefile
··· 19 19 rm -rf node_modules/ 20 20 21 21 release: test 22 - npm version $(BUMP) 23 - git push 24 - git push --tags 22 + npm version $(BUMP) --no-git-tag-version 23 + @v=$$(node -p "require('./package.json').version") && \ 24 + git add package.json package-lock.json && \ 25 + git commit -m "v$$v" && \ 26 + git tag "v$$v" && \ 27 + git push && \ 28 + git push --tags 25 29 26 30 publish: 27 31 npm publish