Skip to content

Commit 428d1cf

Browse files
committed
chore: bump version
1 parent 90c7446 commit 428d1cf

File tree

4 files changed

+34
-24
lines changed

4 files changed

+34
-24
lines changed

apps/website/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ layout: doc
77
## 功能特性
88

99
- 强大的 `monorepo` 管理 (`pnpm` + `turborepo`)
10-
- 单元测试 (`vitest`)
11-
- 包括 `cli bin` 全部都是 `typescript`
10+
- 单元测试框架集成 (`vitest`)
11+
- 全部都是 `typescript`, 包括 `应用` `类库``cli` 工具
1212
- 代码规范与质量 (`eslint` + `@icebreakers/eslint-config` + `@icebreakers/stylelint-config`)
1313
- `git` 提交规范 (`husky` + `commitlint` + `lint-staged`)
14-
- `pnpm` 部署 `Docker` 模板
14+
- `pnpm` `Dockerfile` 部署模板
1515
- `Github Action` 自动发布 `npm`, `github release` 包 (`changeset`)
1616
- 配置文件同步升级 `npx @icebreakers/monorepo@latest`
1717

@@ -33,24 +33,24 @@ layout: doc
3333

3434
执行 `pnpm script:clean` 命令,可以删去大部分的初始 `repo`,只保留一个 `@icebreakers/bar` 项目作为发包打包模板。
3535

36-
执行完成之后再去执行 `pnpm i` 来更新 `pnpm-lock.yaml`, 并提交 `lock` 文件来锁定版本
36+
`clean` 命令执行完成之后,再去执行 `pnpm i` 来更新 `pnpm-lock.yaml`, 并提交 `pnpm-lock.yaml` 文件来锁定 `npm` 包的版本。
3737

3838
## 模板包介绍
3939

40-
默认把 `repo` 放在 `packages``apps``2` 个目录里面
40+
默认模板被放在根目录的 `packages``apps``2` 个目录里面
4141

4242
### packages
4343

4444
- `@icebreakers/bar` - `tsup` 打包的库模板
45-
- `@icebreakers/foo` - `unbuild` 打包的库模板(不推荐, `unbuild` 很久没有更新了)
46-
- `@icebreakers/monorepo` - 本仓库的更新配置服务,可直接使用 `npx @icebreakers/monorepo@latest` 执行远端 `cli` 命令
45+
- `@icebreakers/foo` - `unbuild` 打包的库模板(**不推荐**, `unbuild` 很久没有更新了)
46+
- `@icebreakers/monorepo` - 本仓库的更新配置服务,可直接根目录执行 `npx @icebreakers/monorepo@latest` 执行远端 `cli` 命令,进行项目依赖升级同步
4747

4848
> `tsup` 是使用 `esbuild` 打包库的,`unbuild` 是使用老版本的 `rollup` 进行打包的
4949
5050
### apps
5151

5252
- `@icebreakers/cli` - 使用 `typescript` 编写的 `cli` 程序模板
53-
- `@icebreakers/website` - 文档网站模板,使用 `vitepress` ,也是 [monorepo.icebreaker.top](https://monorepo.icebreaker.top/) 的源代码
53+
- `@icebreakers/website` - 文档网站模板,使用 `vitepress` 搭建,也是 [monorepo.icebreaker.top](https://monorepo.icebreaker.top/) 的源代码
5454

5555
## 更新包的依赖
5656

@@ -78,7 +78,7 @@ layout: doc
7878

7979
然后选中 `Allow GitHub Actions to create and approve pull requests`
8080

81-
然后保存即可
81+
最后,点击下方的保存按钮即可
8282

8383
这样 `changeset` 就有权限对你进行 `PR` 和代码版本更新了!
8484

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
"@icebreakers/monorepo": "workspace:*",
4343
"@icebreakers/stylelint-config": "^0.0.3",
4444
"@types/fs-extra": "^11.0.4",
45-
"@types/klaw": "^3.0.6",
4645
"@types/lint-staged": "^13.3.0",
4746
"@types/lodash": "^4.17.7",
4847
"@types/lodash-es": "^4.17.12",
@@ -52,12 +51,10 @@
5251
"ci-info": "^4.0.0",
5352
"cross-env": "^7.0.3",
5453
"defu": "^6.1.4",
55-
"eslint": "^9.10.0",
54+
"eslint": "^9.11.0",
5655
"execa": "^9.4.0",
57-
"fast-glob": "^3.3.2",
5856
"fs-extra": "^11.2.0",
5957
"husky": "^9.1.6",
60-
"klaw": "^4.1.0",
6158
"lint-staged": "^15.2.10",
6259
"lodash": "^4.17.21",
6360
"lodash-es": "^4.17.21",

packages/monorepo/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@icebreakers/monorepo",
33
"type": "module",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"description": "icebreaker's monorepo config generator",
66
"author": "ice breaker <1324318532@qq.com>",
77
"license": "MIT",
@@ -74,6 +74,7 @@
7474
"devDependencies": {
7575
"@types/get-value": "^3.0.5",
7676
"@types/git-url-parse": "^9.0.3",
77+
"@types/klaw": "^3.0.6",
7778
"@types/set-value": "^4.0.3"
7879
}
7980
}

pnpm-lock.yaml

Lines changed: 22 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)