mf-hosting-frontend 3.0.3 → 3.2.0
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/.releaserc.json +32 -0
- package/package.json +16 -4
- package/pkg/nginx.conf +2 -0
package/.releaserc.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": [
|
|
3
|
+
"@semantic-release/commit-analyzer",
|
|
4
|
+
"@semantic-release/release-notes-generator",
|
|
5
|
+
"@semantic-release/npm",
|
|
6
|
+
[
|
|
7
|
+
"@semantic-release/exec",
|
|
8
|
+
{
|
|
9
|
+
"publishCmd": "npx npm-pkgbuild --publish dist"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"@semantic-release/github",
|
|
14
|
+
{
|
|
15
|
+
"assets": [
|
|
16
|
+
{
|
|
17
|
+
"path": "dist/*.deb",
|
|
18
|
+
"label": "any Debian Package"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"path": "dist/*any.pkg.*",
|
|
22
|
+
"label": "any Arch Linux Package"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"path": "dist/*noarch.rpm",
|
|
26
|
+
"label": "noarch RPM"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
]
|
|
32
|
+
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mf-hosting-frontend",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "hosting definitions for frontend @MF",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"npm-pkgbuild"
|
|
6
|
+
"npm-pkgbuild",
|
|
7
|
+
"semantic-release-config"
|
|
7
8
|
],
|
|
9
|
+
"files": [
|
|
10
|
+
".releaserc.json",
|
|
11
|
+
"pkg/compress-hooks.sh",
|
|
12
|
+
"pkg/nginx.conf"
|
|
13
|
+
],
|
|
14
|
+
"main": ".releaserc.json",
|
|
8
15
|
"devDependencies": {
|
|
9
|
-
"semantic-release": "^23.
|
|
16
|
+
"semantic-release": "^23.1.1",
|
|
17
|
+
"@semantic-release/commit-analyzer": "^12.0.0",
|
|
18
|
+
"@semantic-release/exec": "^6.0.3",
|
|
19
|
+
"@semantic-release/github": "^10.0.5",
|
|
20
|
+
"@semantic-release/release-notes-generator": "^13.0.0"
|
|
10
21
|
},
|
|
11
22
|
"repository": {
|
|
12
23
|
"type": "git",
|
|
@@ -79,7 +90,8 @@
|
|
|
79
90
|
"wss.api": "${wss.origin}${http.api.path}",
|
|
80
91
|
"wss.origin": "wss://${domain1}",
|
|
81
92
|
"wss.origins": "${wss.origin} wss://${domain2} wss://${domain3}",
|
|
82
|
-
"nginx.location.trailer": ""
|
|
93
|
+
"nginx.location.trailer": "",
|
|
94
|
+
"nginx.server.extra": ""
|
|
83
95
|
},
|
|
84
96
|
{
|
|
85
97
|
"requires": {
|