entitlement-provider-frontend 1.15.13 → 1.15.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,4 +5,3 @@
5
5
  [![downloads](http://img.shields.io/npm/dm/entitlement-provider-frontend.svg?style=flat-square)](https://npmjs.org/package/entitlement-provider-frontend)
6
6
  [![GitHub Issues](https://img.shields.io/github/issues/arlac77/entitlement-provider-frontend.svg?style=flat-square)](https://github.com/arlac77/entitlement-provider-frontend/issues)
7
7
  [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Fentitlement-provider-frontend%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/arlac77/entitlement-provider-frontend/goto)
8
- [![Coverage Status](https://coveralls.io/repos/arlac77/entitlement-provider-frontend/badge.svg)](https://coveralls.io/github/arlac77/entitlement-provider-frontend)
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "entitlement-provider-frontend",
3
- "version": "1.15.13",
3
+ "version": "1.15.15",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
7
7
  },
8
+ "packageManager": "npm@11.6.4+sha512.1118cab46a05a50aee6bff5b1b4fa1df18afff89d57465620a3518035026955db87c5bdf9d207b07b7487d99f2490d450cb774655ad63ec2cba7bf1d0ad25d45",
8
9
  "description": "web frontend for the entitlement-provider",
9
10
  "keywords": [
10
11
  "svelte",
@@ -27,31 +28,31 @@
27
28
  "preview": "vite preview"
28
29
  },
29
30
  "dependencies": {
30
- "@kronos-integration/svelte-components": "^3.0.1",
31
- "mf-styling": "^3.2.13",
32
- "svelte-command": "^3.0.33",
33
- "svelte-common": "^6.19.13",
34
- "svelte-entitlement": "^2.0.42",
35
- "svelte-guard-history-router": "^6.1.2",
36
- "svelte-session-manager": "^3.0.43",
37
- "svelte-websocket-store": "^1.1.34"
31
+ "@kronos-integration/svelte-components": "^4.0.0",
32
+ "mf-styling": "^3.2.20",
33
+ "svelte-command": "^3.0.46",
34
+ "svelte-common": "^6.19.34",
35
+ "svelte-entitlement": "^2.0.55",
36
+ "svelte-guard-history-router": "^7.0.0",
37
+ "svelte-session-manager": "^3.0.61",
38
+ "svelte-websocket-store": "^1.2.0"
38
39
  },
39
40
  "devDependencies": {
40
41
  "@semantic-release/commit-analyzer": "^13.0.1",
41
42
  "@semantic-release/exec": "^7.1.0",
42
- "@semantic-release/github": "^11.0.3",
43
- "@semantic-release/release-notes-generator": "^14.0.3",
44
- "@sveltejs/vite-plugin-svelte": "^5.0.3",
45
- "npm-pkgbuild": "^18.2.9",
46
- "semantic-release": "^24.2.5",
47
- "stylelint": "^16.20.0",
48
- "stylelint-config-standard": "^38.0.0",
49
- "svelte": "^5.33.10",
50
- "vite": "^6.3.5",
51
- "vite-plugin-compression2": "^1.4.0"
43
+ "@semantic-release/github": "^12.0.2",
44
+ "@semantic-release/release-notes-generator": "^14.1.0",
45
+ "@sveltejs/vite-plugin-svelte": "^6.2.1",
46
+ "npm-pkgbuild": "^19.1.0",
47
+ "semantic-release": "^25.0.2",
48
+ "stylelint": "^16.26.1",
49
+ "stylelint-config-standard": "^39.0.1",
50
+ "svelte": "^5.45.8",
51
+ "vite": "^7.2.7",
52
+ "vite-plugin-compression2": "^2.4.0"
52
53
  },
53
54
  "optionalDependencies": {
54
- "mf-hosting-frontend": "^3.9.3"
55
+ "mf-hosting-frontend": "^3.9.11"
55
56
  },
56
57
  "repository": {
57
58
  "type": "git",
@@ -67,7 +68,7 @@
67
68
  "${nginx.sites.dir}${name}-well-known.conf": "pkg/nginx.conf"
68
69
  },
69
70
  "depends": {
70
- "entitlement-provider": ">=2.10.13"
71
+ "entitlement-provider": ">=2.10.43"
71
72
  },
72
73
  "frontend": true,
73
74
  "http.path": "${http.base.path}/entitlements",
@@ -82,7 +83,7 @@
82
83
  [
83
84
  "@semantic-release/exec",
84
85
  {
85
- "publishCmd": "npx npm-pkgbuild --publish dist"
86
+ "publishCmd": "npx npm-pkgbuild --publish dist --verbose"
86
87
  }
87
88
  ],
88
89
  [
package/vite.config.mts CHANGED
@@ -4,10 +4,13 @@ import { compression } from "vite-plugin-compression2";
4
4
  import { extractFromPackage } from "npm-pkgbuild";
5
5
 
6
6
  export default defineConfig(async ({ command, mode }) => {
7
- const res = extractFromPackage({
8
- dir: new URL("./", import.meta.url).pathname,
9
- mode
10
- }, process.env);
7
+ const res = extractFromPackage(
8
+ {
9
+ dir: new URL("./", import.meta.url).pathname,
10
+ mode
11
+ },
12
+ process.env
13
+ );
11
14
  const first = await res.next();
12
15
  const pkg = first.value;
13
16
  const properties = pkg.properties;
@@ -32,8 +35,21 @@ export default defineConfig(async ({ command, mode }) => {
32
35
  }
33
36
  }),
34
37
  compression({
35
- algorithm: "brotliCompress",
36
- exclude: [/\.(br)$/, /\.(gz)$/, /\.(png)$/, /\.(jpg)$/, /\.(webp)$/, /\.(svg)$/],
38
+ algorithms: ["brotliCompress"],
39
+ exclude: [
40
+ /\.(map)$/,
41
+ /\.(br)$/,
42
+ /\.(gz)$/,
43
+ /\.(png)$/,
44
+ /\.(jpg)$/,
45
+ /\.(gif)$/,
46
+ /\.(webp)$/,
47
+ /\.(heic)$/,
48
+ /\.(avif)$/,
49
+ /\.(jxl)$/,
50
+ /\.(pdf)$/,
51
+ /\.(docx)$/
52
+ ],
37
53
  threshold: 500
38
54
  })
39
55
  ],