Skip to content

Commit

Permalink
Merge pull request #1 from xlei1123/feature/dev/0.0.2
Browse files Browse the repository at this point in the history
Feature/dev/0.0.2
  • Loading branch information
xlei1123 authored Sep 27, 2024
2 parents 54c46cd + 2659da3 commit b6e704d
Show file tree
Hide file tree
Showing 4 changed files with 2,350 additions and 3 deletions.
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

0 comments on commit b6e704d

Please sign in to comment.