Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/dev/0.0.2 #1

Merged
merged 4 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
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
38 changes: 38 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "✨ Features | 新功能" },
{ "type": "fix", "section": "🐛 Bug Fixes | Bug 修复" },
{ "type": "chore", "section": "🎫 Chores | 其他更新" },
{ "type": "docs", "section": "📝 Documentation | 文档" },
{ "type": "style", "section": "💄 Styles | 风格" },
{ "type": "refactor", "section": "♻ Code Refactoring | 代码重构" },
{ "type": "perf", "section": "⚡ Performance Improvements | 性能优化" },
{ "type": "test", "section": "✅ Tests | 测试" },
{ "type": "revert", "section": "⏪ Reverts | 回退" },
{ "type": "build", "section": "👷‍ Build System | 构建" },
{ "type": "ci", "section": "🔧 Continuous Integration | CI 配置" },
{ "type": "config", "section": "🔨 CONFIG | 配置" }
]
},
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true,
"strictSemVer": true
}
},
"git": {
"commitMessage": "release: v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "echo 更新版本成功"
}
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@


## 0.0.2 (2024-09-27)


### ✨ Features | 新功能

* 版本修改 打包发布 ([54c46cd](https://github.com/xlei1123/dgit/commit/54c46cdae7723afadac34ef493c0114e9babeea0))
* 添加令牌 ([1a3f4e9](https://github.com/xlei1123/dgit/commit/1a3f4e901b2faf923f35fecefe34e6ab6bb1853f))
* init ([fb9b1fb](https://github.com/xlei1123/dgit/commit/fb9b1fb56a4d75d42ae801f61f066083eca140dd))
* limu-x ([efd0e4e](https://github.com/xlei1123/dgit/commit/efd0e4e6f1fc11c81472a4d9517a4fe960dff392))


### 🎫 Chores | 其他更新

* 增加changlog ([a5afb64](https://github.com/xlei1123/dgit/commit/a5afb6443686a903be17ce69ac24f07cd5fb0ccd))
* release-it配置 ([b1be2d3](https://github.com/xlei1123/dgit/commit/b1be2d35ebf789f8206c6e9df3911c10c59bb912))
* release-it配置 ([99add77](https://github.com/xlei1123/dgit/commit/99add776ecd7a17e6fcc7f07bca23829d22111fd))
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@limu-x/dgit",
"version": "0.0.1",
"version": "0.0.2",
"description": "@limu-x/dgit download gitrepo file",
"bin": {
"dgit": "./bin/cmd.js"
Expand All @@ -19,7 +19,8 @@
"test:mocha": "nyc --reporter=text mocha --require ts-node/register 'test/**/*.{ts,tsx}' -t 60000",
"test:mocha:reporter": "nyc --reporter=lcov --reporter=text mocha --require ts-node/register 'test/**/*.{ts,tsx}' -t 60000 --reporter=mochawesome",
"watch:ts": "tsc --watch",
"prepublishOnly": "npm run test:mocha && npm run lint && npm run build:ts"
"prepublishOnly": "npm run test:mocha && npm run lint && npm run build:ts",
"release": "release-it"
},
"lint-staged": {
"**/*.{jsx,js}": [
Expand All @@ -34,6 +35,7 @@
},
"devDependencies": {
"@dking/eslint-config-typescript": "^0.0.4",
"@release-it/conventional-changelog": "^8.0.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
Expand Down Expand Up @@ -66,6 +68,7 @@
"inquirer": "^7.0.0",
"ora": "^4.0.3",
"progress": "^2.0.3",
"release-it": "^17.6.0",
"request": "^2.88.0"
}
}
Loading
Loading