Compare commits

..

No commits in common. "main" and "lint-no-fix" have entirely different histories.

4 changed files with 243 additions and 606 deletions

View File

@ -17,12 +17,12 @@ steps:
- name: reuse
image: fsfe/reuse:4.0.3-debian@sha256:20e70745bf4aa1d37f4ac054f4df045e4f7df7f4ec95d7abd2e263aa1323f399
- name: lint
image: node:20.18.0-alpine@sha256:c13b26e7e602ef2f1074aef304ce6e9b7dd284c419b35d89fcf3cc8e44a8def9
image: node:20.17.0@sha256:a4d1de4c7339eabcf78a90137dfd551b798829e3ef3e399e0036ac454afa1291
commands:
- npm ci
- npm run lint -- --no-fix
- name: audit
image: node:20.18.0-alpine@sha256:c13b26e7e602ef2f1074aef304ce6e9b7dd284c419b35d89fcf3cc8e44a8def9
image: node:20.17.0@sha256:a4d1de4c7339eabcf78a90137dfd551b798829e3ef3e399e0036ac454afa1291
commands:
- npm install -g better-npm-audit
- better-npm-audit audit --production --level=moderate
@ -33,9 +33,6 @@ steps:
repo: git.wtf-eg.de/kompetenzinventar/frontend
target: ki-frontend
dry_run: true
when:
event:
- pull_request
---
kind: pipeline
@ -104,7 +101,7 @@ steps:
- name: reuse
image: fsfe/reuse:4.0.3-debian@sha256:20e70745bf4aa1d37f4ac054f4df045e4f7df7f4ec95d7abd2e263aa1323f399
- name: lint
image: node:20.18.0-alpine@sha256:c13b26e7e602ef2f1074aef304ce6e9b7dd284c419b35d89fcf3cc8e44a8def9
image: node:20.17.0@sha256:a4d1de4c7339eabcf78a90137dfd551b798829e3ef3e399e0036ac454afa1291
commands:
- npm ci
- npm run lint -- --no-fix

View File

@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later
FROM node:20.18.0-alpine@sha256:c13b26e7e602ef2f1074aef304ce6e9b7dd284c419b35d89fcf3cc8e44a8def9 as builder
FROM node:20.17.0-alpine@sha256:1a526b97cace6b4006256570efa1a29cd1fe4b96a5301f8d48e87c5139438a45 as builder
COPY package.json package-lock.json ./
RUN npm install
@ -15,7 +15,7 @@ COPY src src
RUN npm ci && npm run build
FROM nginx:1.27-alpine@sha256:2140dad235c130ac861018a4e13a6bc8aea3a35f3a40e20c1b060d51a7efd250 as ki-frontend
FROM nginx:1.27-alpine@sha256:c04c18adc2a407740a397c8407c011fc6c90026a9b65cceddef7ae5484360158 as ki-frontend
LABEL org.opencontainers.image.source=https://git.wtf-eg.de/kompetenzinventar/ki-frontend.git
LABEL org.opencontainers.image.url=https://git.wtf-eg.de/kompetenzinventar/ki-frontend

816
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -7,25 +7,25 @@
"lint": "vue-cli-service lint"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@babel/eslint-parser": "7.25.1",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-router": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/compiler-sfc": "3.5.6",
"@vue/compiler-sfc": "3.4.38",
"bootstrap": "5.3.3",
"bootstrap-icons": "1.11.3",
"core-js": "3.39.0",
"eslint": "8.57.1",
"eslint-plugin-vue": "9.30.0",
"sass": "1.80.4",
"sass-loader": "16.0.3",
"core-js": "3.38.1",
"eslint": "8.57.0",
"eslint-plugin-vue": "9.27.0",
"sass": "1.77.8",
"sass-loader": "16.0.1",
"v-tooltip": "4.0.0-beta.17",
"vue": "3.5.6",
"vue-router": "4.4.5",
"vue": "3.4.38",
"vue-router": "4.4.3",
"vuex": "4.1.0"
},
"optionalDependencies": {
"sass-embedded": "1.80.4"
"sass-embedded": "1.77.8"
}
}