Skip to content

Commit 2f103d2

Browse files
authored
Update branches-and-releasing.md
1 parent b688f2a commit 2f103d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/branches-and-releasing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependabotのPRや古いプロジェクトのアーカイブなどがありま
2525
- bugfix用のブランチを作成。前回リリース時のコミットから分岐する。
2626
- master(マイナーリリース用ブランチ)ではないので注意。
2727
- bugfixブランチに修正用PRをマージ/コミットをプッシュ。
28-
- bugfixブランチで`npm run test`を実行し、テストが問題なく通るか念のため最終確認。
28+
- bugfixブランチで`npm i && npm run build && npm run test`を実行し、テストが問題なく通るか念のため最終確認。
2929
- bugfixブランチで`npm version patch && npm run pre-release`を実行し、結果をプッシュ。
3030
- bugfixブランチで`npm publish`
3131
- bugfixブランチで`git tag <バージョン名> && git push --tag`
@@ -34,7 +34,7 @@ dependabotのPRや古いプロジェクトのアーカイブなどがありま
3434
### マイナーリリース
3535
非破壊的変更。バージョンx.y.zのyを一つ上げ、zを0にする。
3636
- 事前にdependabotの更新があれば極力マージする。
37-
- masterブランチで`npm run test`を実行し、テストが問題なく通るか念のため最終確認。
37+
- masterブランチで`npm i && npm run build && npm run test`を実行し、テストが問題なく通るか念のため最終確認。
3838
- masterブランチで`npm run pre-release`を実行し、結果をプッシュ。
3939
- masterブランチで`npm publish`
4040
- masterブランチで`git tag <バージョン名> && git push --tag`
@@ -45,7 +45,7 @@ dependabotのPRや古いプロジェクトのアーカイブなどがありま
4545
- package.jsonなどのバージョンにコンフリクトが生じた場合、aiscript-nextのものを反映。
4646
- この合流は、次回リリースがメジャーリリースになると決まった段階でいつでもおこなってよい。
4747
- dependabotの更新があれば極力マージする。
48-
- masterブランチで`npm run test`を実行し、テストが問題なく通るか念のため最終確認。
48+
- masterブランチで`npm i && npm run build && npm run test`を実行し、テストが問題なく通るか念のため最終確認。
4949
- masterブランチで`npm run pre-release`を実行し、結果をプッシュ。
5050
- masterブランチで`npm publish`
5151
- masterブランチで`git tag <バージョン名> && git push --tag`

0 commit comments

Comments
 (0)