Skip to content

Commit 75237d2

Browse files
authored
chore: bump all deps + add ci (#3)
* chore: bump all deps + add ci * ci: remove lint step
1 parent 432695b commit 75237d2

File tree

5 files changed

+3956
-4138
lines changed

5 files changed

+3956
-4138
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
permissions: {}
12+
13+
jobs:
14+
ci:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- run: corepack enable
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: lts/*
22+
cache: "pnpm"
23+
- run: pnpm install
24+
- run: pnpm prepare
25+
- run: pnpm pnpm run -r typecheck

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"keywords": [],
1010
"author": "",
1111
"license": "ISC",
12-
"packageManager": "pnpm@9.4.0"
12+
"packageManager": "pnpm@10.12.4"
1313
}

packages/my-app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
},
1313
"dependencies": {
1414
"my-layer": "workspace:*",
15-
"nuxt": "^3.12.2",
16-
"typescript": "^5.5.2",
17-
"vue": "^3.4.30",
18-
"vue-router": "^4.4.0",
19-
"vue-tsc": "^2.0.22"
15+
"nuxt": "^3.17.6",
16+
"typescript": "^5.8.3",
17+
"vue": "^3.5.17",
18+
"vue-router": "^4.5.1",
19+
"vue-tsc": "^3.0.1"
2020
}
2121
}

packages/my-layer/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
"typecheck": "nuxt typecheck"
1414
},
1515
"devDependencies": {
16-
"@nuxt/eslint": "0.3.13",
17-
"eslint": "^9.5.0",
18-
"nuxt": "^3.12.2",
19-
"typescript": "^5.5.2",
20-
"vue": "^3.4.30",
21-
"vue-tsc": "^2.0.22"
16+
"@nuxt/eslint": "1.5.0",
17+
"eslint": "^9.30.1",
18+
"nuxt": "^3.17.6",
19+
"typescript": "^5.8.3",
20+
"vue": "^3.5.17",
21+
"vue-tsc": "^3.0.1"
2222
}
2323
}

0 commit comments

Comments
 (0)