From 2d6722826a63006ded6cd98dea655905a58f658a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 08:41:05 +0000 Subject: [PATCH 1/2] Bump vite-plugin-pwa from 0.16.5 to 0.16.6 Bumps [vite-plugin-pwa](https://github.com/antfu/vite-plugin-pwa) from 0.16.5 to 0.16.6. - [Release notes](https://github.com/antfu/vite-plugin-pwa/releases) - [Commits](https://github.com/antfu/vite-plugin-pwa/compare/v0.16.5...v0.16.6) --- updated-dependencies: - dependency-name: vite-plugin-pwa dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++++-------- package.json | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index c18a2b33..b0e4e6c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -61,7 +61,7 @@ "stylelint": "^15.11.0", "typescript": "^5.2.2", "vite": "^4.5.0", - "vite-plugin-pwa": "^0.16.5", + "vite-plugin-pwa": "^0.16.6", "vitest": "^0.34.6", "vitest-canvas-mock": "^0.3.3" } @@ -9993,9 +9993,9 @@ "dev": true }, "node_modules/vite-plugin-pwa": { - "version": "0.16.5", - "resolved": "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.16.5.tgz", - "integrity": "sha512-Ahol4dwhMP2UHPQXkllSlXbihOaDFnvBIDPmAxoSZ1EObBUJGP4CMRyCyAVkIHjd6/H+//vH0DM2ON+XxHr81g==", + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.16.6.tgz", + "integrity": "sha512-bQPDOWvhPMwydMoWqohXvIzvrq4X8iuCF+q95qEiaM4yC0ybViGKWMnWcpWp0vcnoLk7QvxHDlK65KUZvqB3Sg==", "dev": true, "dependencies": { "debug": "^4.3.4", @@ -10011,7 +10011,7 @@ "url": "https://github.com/sponsors/antfu" }, "peerDependencies": { - "vite": "^3.1.0 || ^4.0.0", + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0", "workbox-build": "^7.0.0", "workbox-window": "^7.0.0" } @@ -17326,9 +17326,9 @@ } }, "vite-plugin-pwa": { - "version": "0.16.5", - "resolved": "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.16.5.tgz", - "integrity": "sha512-Ahol4dwhMP2UHPQXkllSlXbihOaDFnvBIDPmAxoSZ1EObBUJGP4CMRyCyAVkIHjd6/H+//vH0DM2ON+XxHr81g==", + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/vite-plugin-pwa/-/vite-plugin-pwa-0.16.6.tgz", + "integrity": "sha512-bQPDOWvhPMwydMoWqohXvIzvrq4X8iuCF+q95qEiaM4yC0ybViGKWMnWcpWp0vcnoLk7QvxHDlK65KUZvqB3Sg==", "dev": true, "requires": { "debug": "^4.3.4", diff --git a/package.json b/package.json index 104c22cd..1ef1b532 100644 --- a/package.json +++ b/package.json @@ -77,7 +77,7 @@ "stylelint": "^15.11.0", "typescript": "^5.2.2", "vite": "^4.5.0", - "vite-plugin-pwa": "^0.16.5", + "vite-plugin-pwa": "^0.16.6", "vitest": "^0.34.6", "vitest-canvas-mock": "^0.3.3" }, From 18882375c63090e82a16defc18d26a193d96b39e Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Thu, 2 Nov 2023 10:20:45 +0100 Subject: [PATCH 2/2] Add explicit manifest type --- manifest.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifest.ts b/manifest.ts index af23c2c0..b206df32 100644 --- a/manifest.ts +++ b/manifest.ts @@ -1,4 +1,6 @@ -export const manifest = { +import type { ManifestOptions } from 'vite-plugin-pwa'; + +export const manifest: Partial = { short_name: 'Shlink', name: 'Shlink', start_url: '/',