Skip to content

Commit e8c6474

Browse files
committed
upgrade deps
1 parent bb65c44 commit e8c6474

File tree

11 files changed

+2280
-2376
lines changed

11 files changed

+2280
-2376
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 20.x
15+
node-version: 22.x
1616
- run: yarn install --immutable
1717
- run: yarn test:types
1818
- run: yarn format

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
token: ${{ secrets.GH_TOKEN }}
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 20.x
17+
node-version: 22.x
1818
- run: yarn install --immutable
1919
- run: yarn test:types
2020
- run: yarn format

.yarn/releases/yarn-4.0.2.cjs

Lines changed: 0 additions & 893 deletions
This file was deleted.

.yarn/releases/yarn-4.5.1.cjs

Lines changed: 934 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.0.2.cjs
3+
yarnPath: .yarn/releases/yarn-4.5.1.cjs

package.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@signal24/vue-foundation",
33
"type": "module",
4-
"version": "4.17.3",
4+
"version": "4.18.0",
55
"description": "Common components, directives, and helpers for Vue 3 apps",
66
"module": "./dist/vue-foundation.es.js",
77
"exports": {
@@ -34,7 +34,7 @@
3434
},
3535
"license": "MIT",
3636
"dependencies": {
37-
"uuid": "^10.0.0"
37+
"uuid": "^11.0.3"
3838
},
3939
"peerDependencies": {
4040
"@signal24/openapi-client-codegen": "^1.1.0",
@@ -43,39 +43,39 @@
4343
"vue": "^3.4.0"
4444
},
4545
"devDependencies": {
46-
"@eslint/js": "^9.10.0",
46+
"@eslint/js": "^9.15.0",
4747
"@nabla/vite-plugin-eslint": "^2.0.4",
4848
"@signal24/openapi-client-codegen": "^1.1.0",
49-
"@tsconfig/node20": "^20.1.4",
49+
"@tsconfig/node22": "^22.0.0",
5050
"@types/eslint__js": "^8.42.3",
5151
"@types/jsdom": "^21.1.7",
52-
"@types/lodash": "^4.17.7",
53-
"@types/node": "^20.16.3",
52+
"@types/lodash": "^4.17.13",
53+
"@types/node": "^22.9.0",
5454
"@types/uuid": "^10.0.0",
55-
"@vitejs/plugin-vue": "^5.1.3",
56-
"@vue/eslint-config-prettier": "^9.0.0",
57-
"@vue/eslint-config-typescript": "^13.0.0",
55+
"@vitejs/plugin-vue": "^5.2.0",
56+
"@vue/eslint-config-prettier": "^10.1.0",
57+
"@vue/eslint-config-typescript": "^14.1.3",
5858
"@vue/test-utils": "^2.4.6",
59-
"@vue/tsconfig": "^0.5.1",
60-
"cypress": "^13.14.2",
59+
"@vue/tsconfig": "^0.6.0",
60+
"cypress": "^13.15.2",
6161
"date-fns": "^4.1.0",
62-
"eslint": "^9.10.0",
63-
"eslint-plugin-cypress": "^3.5.0",
62+
"eslint": "^9.15.0",
63+
"eslint-plugin-cypress": "^4.1.0",
6464
"eslint-plugin-simple-import-sort": "^12.1.1",
6565
"eslint-plugin-unused-imports": "^4.1.4",
66-
"eslint-plugin-vue": "^9.28.0",
67-
"jsdom": "^25.0.0",
66+
"eslint-plugin-vue": "^9.31.0",
67+
"jsdom": "^25.0.1",
6868
"lodash": "^4.17.21",
6969
"prettier": "^3.3.3",
70-
"sass": "^1.78.0",
70+
"sass": "^1.81.0",
7171
"start-server-and-test": "^2.0.8",
72-
"type-fest": "^4.26.1",
73-
"typescript": "^5.6.2",
74-
"typescript-eslint": "^8.6.0",
75-
"vite": "^5.4.6",
76-
"vitest": "^2.1.1",
77-
"vue": "^3.5.6",
78-
"vue-tsc": "^2.1.6"
72+
"type-fest": "^4.27.0",
73+
"typescript": "^5.6.3",
74+
"typescript-eslint": "^8.14.0",
75+
"vite": "^5.4.11",
76+
"vitest": "^2.1.5",
77+
"vue": "^3.5.13",
78+
"vue-tsc": "^2.1.10"
7979
},
80-
"packageManager": "yarn@4.0.2"
80+
"packageManager": "yarn@4.5.1"
8181
}

src/filters/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function phone(value: string | null) {
3232

3333
function upperFirst(value: null): null;
3434
function upperFirst(value: string): string;
35-
function upperFirst(value: string | null) {
35+
function upperFirst(value: string | null): null | string {
3636
return value ? _upperFirst(value) : null;
3737
}
3838

tsconfig.node.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node20/tsconfig.json",
2+
"extends": "@tsconfig/node22/tsconfig.json",
33
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
44
"compilerOptions": {
55
"composite": true,

tsconfig.vite-plugins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@tsconfig/node20/tsconfig.json",
2+
"extends": "@tsconfig/node22/tsconfig.json",
33
"include": ["src/vite-plugins/*"],
44
"compilerOptions": {
55
"composite": true,

vite.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ import { defineConfig } from 'vite';
88
// https://vitejs.dev/config/
99
export default defineConfig({
1010
plugins: [vue(), eslintPlugin()],
11+
css: {
12+
preprocessorOptions: {
13+
scss: {
14+
api: 'modern-compiler'
15+
}
16+
}
17+
},
1118
build: {
1219
cssCodeSplit: true,
1320
lib: {

0 commit comments

Comments
 (0)