Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Build and Test
runs-on: ubuntu-latest
env:
NODE_VERSION: '18'
NODE_VERSION: '24'
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Sync Issues
runs-on: ubuntu-latest
env:
NODE_VERSION: '18'
NODE_VERSION: '24'
LARK_APP_ID: ${{ secrets.COZELOOP_LARK_APP_ID }}
LARK_APP_SECRET: ${{ secrets.COZELOOP_LARK_APP_SECRET }}
ISSUE_ACTION: ${{ github.event.action }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Send Lark Message
runs-on: ubuntu-latest
env:
NODE_VERSION: '18'
NODE_VERSION: '24'
LARK_APP_ID: ${{ secrets.COZELOOP_LARK_APP_ID }}
LARK_APP_SECRET: ${{ secrets.COZELOOP_LARK_APP_SECRET }}
REPO_NAME: ${{ github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/hydrogen
lts/krypton
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ Find usage examples for each package in the [examples](./examples) directory:

### Prerequisites

- Node.js 18+ (LTS/Hydrogen recommended)
- pnpm 9.12.0
- Rush 5.150.0
- Node.js 24+ (LTS/Krypton recommended)
- pnpm 10.27.0
- Rush 5.172.1

### Installation

1. **Install Node.js 18+**
1. **Install Node.js 24+**

``` bash
nvm install lts/hydrogen
nvm alias default lts/hydrogen # set default node version
nvm use lts/hydrogen
nvm install lts/krypton
nvm alias default lts/krypton # set default node version
nvm use lts/krypton
```

2. **Clone the repository**
Expand All @@ -47,7 +47,7 @@ git clone git@github.com:coze-dev/cozeloop-js.git
3. **Install required global dependencies**

``` bash
npm i -g pnpm@9.12.0 @microsoft/rush@5.150.0
npm i -g pnpm@10.27.0 @microsoft/rush@5.172.1
```

4. **Install project dependencies**
Expand Down
16 changes: 8 additions & 8 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@

### 前置要求

- Node.js 18+ (推荐 LTS/Hydrogen)
- pnpm 9.12.0
- Rush 5.150.0
- Node.js 24+ (推荐 LTS/Krypton)
- pnpm 10.27.0
- Rush 5.172.1

### 安装步骤

1. **安装 Node.js 18+**
1. **安装 Node.js 24+**

```bash
nvm install lts/hydrogen
nvm alias default lts/hydrogen # 设置默认 node 版本
nvm use lts/hydrogen
nvm install lts/krypton
nvm alias default lts/krypton # 设置默认 node 版本
nvm use lts/krypton
```

2. **克隆仓库**
Expand All @@ -47,7 +47,7 @@ git clone git@github.com:coze-dev/cozeloop-js.git
3. **安装必需的全局依赖**

```bash
npm i -g pnpm@9.12.0 @microsoft/rush@5.150.0
npm i -g pnpm@10.27.0 @microsoft/rush@5.172.1
```

4. **安装项目依赖**
Expand Down
4 changes: 2 additions & 2 deletions common/autoinstallers/rush-commitlint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"dependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@rushstack/rush-sdk": "5.150.0",
"@rushstack/rush-sdk": "5.172.1",
"commitizen": "^4.2.6",
"cz-customizable": "^7.2.1"
},
"devDependencies": {
"@types/node": "^20"
"@types/node": "^24"
}
}
Loading
Loading