プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

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

package.json の使用をやめタグを使う

Kohei Watanabe (Aug 29, 2021, 6:15 PM +0900) 74eacb86 bc993968

+9 -8
+2
.github/workflows/release-it.yml
··· 10 10 runs-on: ubuntu-latest 11 11 steps: 12 12 - uses: actions/checkout@v2 13 + with: 14 + fetch-depth: 0 13 15 - uses: actions/setup-node@v2 14 16 with: 15 17 node-version: "lts/*"
+1 -2
release-it/.release-it.yml
··· 1 1 disable-metrics: true 2 2 git: 3 3 tagName: "v${version}" 4 - npm: 5 - publish: false 4 + npm: false 6 5 github: 7 6 release: true 8 7 plugins:
+6 -5
release-it/CHANGELOG.md
··· 5 5 6 6 ## [Unreleased] 7 7 8 + ### 修正 9 + 10 + - `--depth 1` と package.json の使用をやめ、タグ名を使ってバージョニング 11 + 8 12 ## [0.0.4] - 2021-08-29 9 13 10 14 ### 変更 ··· 42 46 - release-it 追加 43 47 - _TODO_ 44 48 45 - [0.0.4]: https://github.com/kou029w/_/compare/null...v0.0.4 49 + [0.0.4]: https://github.com/kou029w/_/compare/0.0.3...v0.0.4 46 50 [0.0.3]: https://github.com/kou029w/_/compare/0.0.2...0.0.3 47 51 [0.0.2]: https://github.com/kou029w/_/compare/0.0.1...0.0.2 48 52 [0.0.1]: https://github.com/kou029w/_/tree/0.0.1 49 - [unreleased]: https://github.com/kou029w/_/compare/0.0.3...HEAD 50 - 51 - 52 - [Unreleased]: https://github.com/kou029w/_/compare/v0.0.4...HEAD 53 + [unreleased]: https://github.com/kou029w/_/compare/v0.0.4...HEAD
-1
release-it/package.json
··· 1 1 { 2 2 "name": "@kou029w/release-it-example-e87a467b6a64152d", 3 - "version": "0.0.4", 4 3 "devDependencies": { 5 4 "@release-it/keep-a-changelog": "^2.3.0", 6 5 "release-it": "^14.11.5"