Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Add back 'v' prefix to version output by print-version #1473

Merged
merged 1 commit into from
Oct 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"lint": "eslint --no-eslintrc --config ./.eslintrc.js --cache --report-unused-disable-directives --format codeframe --ext js,jsx .",
"prettier:check": "prettier --ignore-path .eslintignore --check \"**/*.{css,html,js,jsx,json,md,yaml,yml}\"",
"prettier:fix": "prettier --ignore-path .eslintignore --write \"**/*.{css,html,js,jsx,json,md,yaml,yml}\"",
"print-version": "node -p \"require('./lerna.json').version\"",
"print-version": "node -p \"'v' +require('./lerna.json').version\"",
"release:prepare": "lerna version && prettier --write lerna.json && yarn changelog",
"release:commit": "git commit --all --message $(yarn -s print-version) --edit",
"release:tag": "git tag $(yarn -s print-version) && git push upstream $(yarn -s print-version)",
Expand Down