mf-examples 1.3.9 → 1.3.10

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.
Files changed (1) hide show
  1. package/package.json +26 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mf-examples",
3
- "version": "1.3.9",
3
+ "version": "1.3.10",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -28,9 +28,9 @@
28
28
  "@semantic-release/commit-analyzer": "^9.0.2",
29
29
  "@semantic-release/exec": "^6.0.3",
30
30
  "@semantic-release/release-notes-generator": "^10.0.3",
31
- "mf-hosting-frontend": "^1.0.4",
31
+ "mf-hosting-frontend": "^1.4.0",
32
32
  "mf-styling": "^1.7.33",
33
- "npm-pkgbuild": "^10.20.4",
33
+ "npm-pkgbuild": "^11.0.0",
34
34
  "semantic-release": "^20.0.2",
35
35
  "stylelint": "^14.16.0",
36
36
  "stylelint-config-standard": "^29.0.0",
@@ -46,8 +46,7 @@
46
46
  "homepage": "https://github.com/arlac77/mf-examples#readme",
47
47
  "pkgbuild": {
48
48
  "content": {
49
- "${install.dir}": "build/",
50
- "${nginx.sites.dir}${name}.conf": "pkg/nginx.conf"
49
+ "${install.dir}": "build/"
51
50
  },
52
51
  "depends": {
53
52
  "mf-styling": ">=1.7.32",
@@ -59,7 +58,7 @@
59
58
  "svelte-session-manager": ">=2.0.11",
60
59
  "svelte-websocket-store": ">=1.1.33"
61
60
  },
62
- "http.path": "${http.base.path}",
61
+ "http.path": "${http.base.pasth}",
63
62
  "install.dir": "${install.base.dir}",
64
63
  "frontend": true,
65
64
  "example": true
@@ -81,15 +80,31 @@
81
80
  "assets": [
82
81
  {
83
82
  "path": "dist/*.deb",
84
- "label": "Debian Package"
83
+ "label": "any Debian Package"
85
84
  },
86
85
  {
87
- "path": "dist/*.pkg.*",
88
- "label": "Arch Linux Package"
86
+ "path": "dist/*any.pkg.*",
87
+ "label": "any Arch Linux Package"
89
88
  },
90
89
  {
91
- "path": "dist/*.rpm",
92
- "label": "RPM"
90
+ "path": "dist/*x86_64.pkg.*",
91
+ "label": "x86_64 Arch Linux Package"
92
+ },
93
+ {
94
+ "path": "dist/*aarch64.pkg.*",
95
+ "label": "arm64 Arch Linux Package"
96
+ },
97
+ {
98
+ "path": "dist/*noarch.rpm",
99
+ "label": "noarch RPM"
100
+ },
101
+ {
102
+ "path": "dist/*x86_64.rpm",
103
+ "label": "x86_64 RPM"
104
+ },
105
+ {
106
+ "path": "dist/*aarch64.rpm",
107
+ "label": "arm64 RPM"
93
108
  }
94
109
  ]
95
110
  }