Skip to content

Commit 1cc724c

Browse files
committed
chore: dependency updates
1 parent 9869549 commit 1cc724c

4 files changed

Lines changed: 841 additions & 1168 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# build stage
2-
FROM --platform=$BUILDPLATFORM node:22-alpine3.20 AS build-stage
2+
FROM --platform=$BUILDPLATFORM node:22-alpine3.21 AS build-stage
33

44
ENV PNPM_HOME="/pnpm"
55
ENV PATH="$PNPM_HOME:$PATH"
66

7-
RUN corepack enable && corepack use pnpm@9
7+
RUN corepack enable && corepack use pnpm@10
88

99
WORKDIR /app
1010

@@ -15,7 +15,7 @@ COPY . .
1515
RUN pnpm build
1616

1717
# production stage
18-
FROM alpine:3.20
18+
FROM alpine:3.21
1919

2020
ENV GID=1000 \
2121
UID=1000 \

eslint.config.js

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
import pluginVue from "eslint-plugin-vue";
4+
import eslintConfigPrettier from "@vue/eslint-config-prettier";
15

2-
import js from "@eslint/js";
3-
import pluginVue from 'eslint-plugin-vue'
4-
import eslintConfigPrettier from "eslint-config-prettier";
5-
6+
/** @type {import('eslint').Linter.Config[]} */
67
export default [
7-
js.configs.recommended,
8-
...pluginVue.configs['flat/recommended'],
8+
{ files: ["**/*.{js,mjs,cjs,vue}"] },
9+
{ languageOptions: { globals: globals.browser } },
10+
pluginJs.configs.recommended,
11+
...pluginVue.configs["flat/recommended"],
912
eslintConfigPrettier,
1013
{
11-
files: ['**/*.{vue,js,jsx,mjs,cjs}'],
1214
rules: {
1315
"vue/multi-word-component-names": "off",
1416
"vue/require-default-prop": "off",
1517
"vue/no-v-html": "off",
1618
},
17-
},
19+
},
1820
{
19-
ignores: ["**/dist/"],
20-
}
21+
ignores: ["*.d.ts", "**/coverage", "**/dist"],
22+
},
2123
];

package.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,21 @@
1717
"yaml": "^2.7.0"
1818
},
1919
"devDependencies": {
20+
"@eslint/js": "^9.21.0",
2021
"@vitejs/plugin-vue": "^5.2.1",
2122
"@vue/eslint-config-prettier": "^10.2.0",
22-
"eslint": "^9.19.0",
23+
"eslint": "^9.21.0",
2324
"eslint-plugin-vue": "^9.32.0",
25+
"globals": "^16.0.0",
2426
"http-server": "^14.1.1",
25-
"prettier": "^3.4.2",
26-
"sass-embedded": "^1.83.4",
27-
"vite": "^6.0.11",
27+
"prettier": "^3.5.2",
28+
"sass-embedded": "^1.85.0",
29+
"vite": "^6.1.1",
2830
"vite-plugin-pwa": "^0.21.1"
2931
},
3032
"license": "Apache-2.0",
31-
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
33+
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
34+
"pnpm": {
35+
"neverBuiltDependencies": []
36+
}
3237
}

0 commit comments

Comments
 (0)