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
- redactor /
2
- node_modules /
1
+ .DS_Store
2
+ .env
3
3
dist /
4
+ node_modules /
4
5
stamp-yarn
6
+ stats.json
7
+ yarn-error.log
5
8
yarn.lock
Original file line number Diff line number Diff line change
1
+ -include .env
2
+ export
3
+
1
4
ESLINT ?= npx eslint
2
5
YARN ?= npx yarn
3
6
@@ -36,19 +39,25 @@ bundle: stamp-yarn
36
39
.PHONY : release-major
37
40
release-major : check
38
41
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
40
45
41
46
42
47
.PHONY : release-minor
43
48
release-minor : check
44
49
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
46
53
47
54
48
55
.PHONY : release-patch
49
56
release-patch : check
50
57
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
52
61
53
62
54
63
.PHONY : serve
You can’t perform that action at this time.
0 commit comments