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/changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 9
version: 9.15.9

- name: Install Dependencies
run: pnpm install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10.9.0
version: 10.24.0
run_install: true

- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10
version: 10.24.0
run_install: false

- name: Use Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10.9.0
version: 10.24.0
run_install: true

- run: pnpm dlx pkg-pr-new publish ./packages/adapter/* ./packages/cli/* ./packages/core/* ./packages/server/* ./packages/unioc
20 changes: 10 additions & 10 deletions fixtures/midway-koa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@
"build:midway": "mwtsc --cleanOutDir"
},
"dependencies": {
"@midwayjs/bootstrap": "^3.20.4",
"@midwayjs/core": "^3.20.4",
"@midwayjs/info": "^3.20.5",
"@midwayjs/koa": "^3.20.5",
"@midwayjs/bootstrap": "^3.20.11",
"@midwayjs/core": "^3.20.11",
"@midwayjs/info": "^3.20.16",
"@midwayjs/koa": "^3.20.16",
"@midwayjs/logger": "^3.4.2",
"@midwayjs/validate": "^3.20.5",
"@midwayjs/validate": "^3.20.17",
"@unioc/adapter-midway": "workspace:*",
"unioc": "workspace:*"
},
"devDependencies": {
"@midwayjs/mock": "^3.20.4",
"@midwayjs/mock": "^3.20.11",
"@types/jest": "^29.5.14",
"@types/node": "22.15.2",
"@types/node": "22.19.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"mwts": "^1.3.0",
"mwtsc": "^1.15.1",
"ts-jest": "^29.3.2",
"typescript": "~5.8.3"
"mwtsc": "^1.15.2",
"ts-jest": "^29.4.6",
"typescript": "~5.9.3"
}
}
6 changes: 3 additions & 3 deletions fixtures/nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"dev": "tsdown --watch"
},
"devDependencies": {
"@nestjs/common": "^11.1.0",
"@types/express": "^5.0.1",
"express": "^5.1.0",
"@nestjs/common": "^11.1.9",
"@types/express": "^5.0.6",
"express": "^5.2.0",
"rxjs": "^7.8.2",
"unioc": "workspace:*"
}
Expand Down
4 changes: 2 additions & 2 deletions fixtures/reflector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"dev": "nodemon -w '../packages/core/reflector/src/**/*.ts' -e .ts -x vite"
},
"devDependencies": {
"nodemon": "^3.1.10",
"nodemon": "^3.1.11",
"vite": "^6.3.3",
"vite-plugin-inspect": "^11.0.1"
"vite-plugin-inspect": "^11.3.3"
}
}
6 changes: 3 additions & 3 deletions packages/adapter/adapter-midway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@
"access": "public"
},
"dependencies": {
"@midwayjs/core": "^3.20.4",
"@rollup/pluginutils": "^5.1.4",
"@midwayjs/core": "^3.20.11",
"@rollup/pluginutils": "^5.3.0",
"@unioc/core": "workspace:*",
"@unioc/decorator": "workspace:*",
"@unioc/meta": "workspace:*",
"@unioc/shared": "workspace:*",
"@unioc/web": "workspace:*",
"unplugin": "^2.3.2"
"unplugin": "^2.3.11"
}
}
4 changes: 2 additions & 2 deletions packages/adapter/adapter-nestjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@
}
},
"dependencies": {
"@nestjs/common": "^11.1.0",
"@nestjs/common": "^11.1.9",
"@unioc/core": "workspace:*",
"@unioc/decorator": "workspace:*",
"@unioc/meta": "workspace:*",
"@unioc/shared": "workspace:*",
"@unioc/web": "workspace:*",
"path-to-regexp": "^8.2.0",
"path-to-regexp": "^8.3.0",
"rxjs": "^7.8.2"
}
}
2 changes: 1 addition & 1 deletion packages/cli/create-unioc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
"@types/minimist": "^1.2.5",
"@unioc/commander": "workspace:*",
"minimist": "^1.2.8",
"plop": "^4.0.1"
"plop": "^4.0.4"
}
}
14 changes: 7 additions & 7 deletions packages/core/reflector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,14 @@
}
},
"dependencies": {
"@rollup/pluginutils": "^5.1.4",
"magic-string": "^0.30.17",
"oxc-parser": "^0.67.0",
"unplugin": "^2.3.2"
"@rollup/pluginutils": "^5.3.0",
"magic-string": "^0.30.21",
"oxc-parser": "^0.99.0",
"unplugin": "^2.3.11"
},
"devDependencies": {
"@nuxt/kit": "^3.16.2",
"@nuxt/schema": "^3.16.2",
"webpack": "^5.99.7"
"@nuxt/kit": "^3.20.1",
"@nuxt/schema": "^3.20.1",
"webpack": "^5.103.0"
}
}
4 changes: 2 additions & 2 deletions packages/server/web-bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@unioc/meta": "workspace:*",
"@unioc/shared": "workspace:*",
"@unioc/web": "workspace:*",
"bun-types": "^1.2.13",
"path-to-regexp": "^8.2.0"
"bun-types": "^1.3.3",
"path-to-regexp": "^8.3.0"
}
}
4 changes: 2 additions & 2 deletions packages/server/web-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"access": "public"
},
"dependencies": {
"@types/express": "^5.0.1",
"@types/express": "^5.0.6",
"@unioc/core": "workspace:*",
"@unioc/decorator": "workspace:*",
"@unioc/meta": "workspace:*",
"@unioc/shared": "workspace:*",
"@unioc/web": "workspace:*",
"express": "^5.1.0"
"express": "^5.2.0"
}
}
2 changes: 1 addition & 1 deletion packages/server/web-koa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"dependencies": {
"@koa/router": "^13.1.0",
"@types/koa__router": "^12.0.4",
"@types/koa__router": "^12.0.5",
"@unioc/core": "workspace:*",
"@unioc/decorator": "workspace:*",
"@unioc/meta": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/signals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
"dependencies": {
"@unioc/core": "workspace:*",
"@unioc/decorator": "workspace:*",
"alien-signals": "^2.0.5"
"alien-signals": "^2.0.8"
}
}
2 changes: 1 addition & 1 deletion packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"access": "public"
},
"dependencies": {
"@types/vscode": "^1.101.0",
"@types/vscode": "^1.106.1",
"@unioc/core": "workspace:*",
"@unioc/decorator": "workspace:*"
}
Expand Down
Loading
Loading