svelte-entitlement 1.2.41 → 1.2.43

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 +34 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-entitlement",
3
- "version": "1.2.41",
3
+ "version": "1.2.43",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -42,14 +42,15 @@
42
42
  "c8": "^7.12.0",
43
43
  "documentation": "^14.0.1",
44
44
  "mf-styling": "^1.7.34",
45
- "npm-pkgbuild": "^10.19.10",
45
+ "npm-pkgbuild": "^11.1.4",
46
46
  "semantic-release": "^20.0.2",
47
47
  "svelte": "^3.55.1",
48
48
  "testcafe": "^2.2.0",
49
49
  "vite": "^4.0.4"
50
50
  },
51
51
  "optionalDependencies": {
52
- "mf-hosting-frontend": "^1.0.4"
52
+ "mf-hosting-cloudflare": "^1.0.5",
53
+ "mf-hosting-frontend": "^1.4.0"
53
54
  },
54
55
  "repository": {
55
56
  "type": "git",
@@ -61,10 +62,8 @@
61
62
  "homepage": "https://github.com/arlac77/svelte-entitlement#readme",
62
63
  "pkgbuild": {
63
64
  "content": {
64
- "${install.dir}": "build/",
65
- "${nginx.sites.dir}${name}.conf": "pkg/nginx.conf"
65
+ "${install.dir}": "build/"
66
66
  },
67
- "description": "example showing ${name} features in action",
68
67
  "example": true,
69
68
  "frontend": true
70
69
  },
@@ -79,17 +78,43 @@
79
78
  "publishCmd": "npx npm-pkgbuild --available --continue --publish dist --verbose"
80
79
  }
81
80
  ],
81
+ [
82
+ "@semantic-release/exec",
83
+ {
84
+ "publishCmd": "npx npm-pkgbuild --available --continue --publish dist"
85
+ }
86
+ ],
82
87
  [
83
88
  "@semantic-release/github",
84
89
  {
85
90
  "assets": [
86
91
  {
87
92
  "path": "dist/*.deb",
88
- "label": "Debian Package"
93
+ "label": "any Debian Package"
94
+ },
95
+ {
96
+ "path": "dist/*any.pkg.*",
97
+ "label": "any Arch Linux Package"
98
+ },
99
+ {
100
+ "path": "dist/*x86_64.pkg.*",
101
+ "label": "x86_64 Arch Linux Package"
102
+ },
103
+ {
104
+ "path": "dist/*aarch64.pkg.*",
105
+ "label": "arm64 Arch Linux Package"
106
+ },
107
+ {
108
+ "path": "dist/*noarch.rpm",
109
+ "label": "noarch RPM"
110
+ },
111
+ {
112
+ "path": "dist/*x86_64.rpm",
113
+ "label": "x86_64 RPM"
89
114
  },
90
115
  {
91
- "path": "dist/*.pkg.*",
92
- "label": "Arch Linux Package"
116
+ "path": "dist/*aarch64.rpm",
117
+ "label": "arm64 RPM"
93
118
  }
94
119
  ]
95
120
  }