mf-examples 1.5.10 → 1.5.12
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/package.json +9 -9
- package/src/index.html +3 -3
- package/vite.config.mts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mf-examples",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.12",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
32
32
|
"@semantic-release/exec": "^6.0.3",
|
|
33
|
-
"@semantic-release/github": "^
|
|
33
|
+
"@semantic-release/github": "^11.0.0",
|
|
34
34
|
"@semantic-release/release-notes-generator": "^14.0.1",
|
|
35
|
-
"mf-hosting-frontend": "^3.
|
|
36
|
-
"mf-styling": "^3.
|
|
37
|
-
"npm-pkgbuild": "^15.
|
|
38
|
-
"semantic-release": "^24.
|
|
39
|
-
"stylelint": "^16.
|
|
35
|
+
"mf-hosting-frontend": "^3.7.1",
|
|
36
|
+
"mf-styling": "^3.2.3",
|
|
37
|
+
"npm-pkgbuild": "^15.5.4",
|
|
38
|
+
"semantic-release": "^24.1.1",
|
|
39
|
+
"stylelint": "^16.9.0",
|
|
40
40
|
"stylelint-config-standard": "^36.0.1",
|
|
41
|
-
"vite": "^5.
|
|
42
|
-
"vite-plugin-compression2": "^1.
|
|
41
|
+
"vite": "^5.4.8",
|
|
42
|
+
"vite-plugin-compression2": "^1.3.0"
|
|
43
43
|
},
|
|
44
44
|
"repository": {
|
|
45
45
|
"type": "git",
|
package/src/index.html
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<ul>
|
|
26
26
|
<li>
|
|
27
27
|
<a href="mf-styling/index.html"
|
|
28
|
-
><b>mf-styling</b> CSS styling for
|
|
28
|
+
><b>mf-styling</b> CSS styling for MF apps</a
|
|
29
29
|
>
|
|
30
30
|
</li>
|
|
31
31
|
<li>
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<a href="svelte-entitlement/index.html"><b>svelte-entitlement</b></a>
|
|
38
38
|
</li>
|
|
39
39
|
<li>
|
|
40
|
-
<a href="svelte-command/index.html"><b>svelte-command</b> button actions for svelte</a>
|
|
40
|
+
<a href="svelte-command/index.html"><b>svelte-command</b> (button) actions for svelte</a>
|
|
41
41
|
</li>
|
|
42
42
|
<li>
|
|
43
43
|
<a href="svelte-guard-history-router/index.html"
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
</li>
|
|
77
77
|
<li>
|
|
78
78
|
<a href="kronos-svelte-components/index.html"
|
|
79
|
-
><b>kronos-svelte-components</b
|
|
79
|
+
><b>kronos-svelte-components</b> display kronos service wiring</a
|
|
80
80
|
>
|
|
81
81
|
</li>
|
|
82
82
|
</ul>
|
package/vite.config.mts
CHANGED
|
@@ -28,6 +28,7 @@ export default defineConfig(async ({ command, mode }) => {
|
|
|
28
28
|
compression({
|
|
29
29
|
algorithm: "brotliCompress",
|
|
30
30
|
exclude: [
|
|
31
|
+
/\.(map)$/,
|
|
31
32
|
/\.(br)$/,
|
|
32
33
|
/\.(gz)$/,
|
|
33
34
|
/\.(png)$/,
|
|
@@ -37,7 +38,8 @@ export default defineConfig(async ({ command, mode }) => {
|
|
|
37
38
|
/\.(heic)$/,
|
|
38
39
|
/\.(avif)$/,
|
|
39
40
|
/\.(jxl)$/,
|
|
40
|
-
/\.(pdf)
|
|
41
|
+
/\.(pdf)$/,
|
|
42
|
+
/\.(docx)$/
|
|
41
43
|
],
|
|
42
44
|
threshold: 500
|
|
43
45
|
})
|