File tree Expand file tree Collapse file tree 2 files changed +17
-5
lines changed
Expand file tree Collapse file tree 2 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 1- dist /
21.DS_Store
3- node_modules
2+ .env
3+ dist /
4+ node_modules /
45stamp-yarn
6+ stats.json
7+ yarn-error.log
58yarn.lock
Original file line number Diff line number Diff line change 1+ -include .env
2+ export
3+
14ESLINT ?= npx eslint
25YARN ?= npx yarn
36
@@ -36,19 +39,25 @@ bundle: stamp-yarn
3639.PHONY : release-major
3740release-major : check
3841 npx release-it major --dry-run --ci && \
39- npx release-it major --ci
42+ npx release-it major --ci && \
43+ npx release-it --github.release --github.update --no-github.draft --no-increment --no-git --no-npm --ci && \
44+ git checkout CHANGES.md
4045
4146
4247.PHONY : release-minor
4348release-minor : check
4449 npx release-it minor --dry-run --ci && \
45- npx release-it minor --ci
50+ npx release-it minor --ci && \
51+ npx release-it --github.release --github.update --no-github.draft --no-increment --no-git --no-npm --ci && \
52+ git checkout CHANGES.md
4653
4754
4855.PHONY : release-patch
4956release-patch : check
5057 npx release-it patch --dry-run --ci && \
51- npx release-it patch --ci
58+ npx release-it patch --ci && \
59+ npx release-it --github.release --github.update --no-github.draft --no-increment --no-git --no-npm --ci && \
60+ git checkout CHANGES.md
5261
5362
5463.PHONY : serve
You can’t perform that action at this time.
0 commit comments