Skip to content

Commit

Permalink
chore(deps): update definitelytyped (major) (#824)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: jer3k <[email protected]>
  • Loading branch information
renovate[bot] and jer3k authored Nov 15, 2024
1 parent dafa9a5 commit da9ad4b
Show file tree
Hide file tree
Showing 38 changed files with 1,254 additions and 793 deletions.
2 changes: 1 addition & 1 deletion admin-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build static files
FROM node:lts-alpine AS build
FROM node:22-alpine AS build
WORKDIR /app
COPY . .
RUN npm ci --ignore-scripts && \
Expand Down
10 changes: 5 additions & 5 deletions admin-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion admin-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^8.0.2",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.16.10",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion admin-frontend/src/components/AnalyticsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<script setup lang="ts">
import { PowerBIReportEmbed } from 'powerbi-client-vue-js';
import { EventHandler } from 'powerbi-client-vue-js/dist/types/src/utils/utils';
import type { EventHandler } from 'powerbi-client-vue-js/dist/types/src/utils/utils';
import { models, IReportEmbedConfiguration, Report } from 'powerbi-client';
import { reactive, CSSProperties, Reactive } from 'vue';
import ApiService from '../services/apiService';
Expand Down
6 changes: 3 additions & 3 deletions backend-external/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-bullseye-slim AS build
FROM node:22-bullseye-slim AS build

# Install packages, build and keep only prod packages
WORKDIR /app
Expand All @@ -8,7 +8,7 @@ RUN npm ci --ignore-scripts && \
npm run build


FROM node:20-bullseye-slim AS dependencies
FROM node:22-bullseye-slim AS dependencies

# Install packages, build and keep only prod packages
WORKDIR /app
Expand All @@ -17,7 +17,7 @@ RUN npm ci --omit=dev --ignore-scripts


# Deployment container
FROM gcr.io/distroless/nodejs20-debian11:nonroot
FROM gcr.io/distroless/nodejs22-debian12:nonroot
ENV NODE_ENV=production
# Copy over app.ts
WORKDIR /app
Expand Down
Loading

0 comments on commit da9ad4b

Please sign in to comment.