mb-service-linux 2.0.3-dev-20260704-e589e6d → 2.0.3
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/CHANGELOG.md +7 -1
- package/README.md +4 -4
- package/dist/bin/mb-service.js +3 -0
- package/npm-shrinkwrap.json +3 -3
- package/package.json +2 -3
- package/bin/mb-service +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -24,7 +24,13 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
24
24
|
|
|
25
25
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="120"></a>
|
|
26
26
|
|
|
27
|
-
## [2.0.3] -
|
|
27
|
+
## [2.0.3] - 2026-07-07
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- [readme]: Add explanation for --bun parameter.
|
|
32
|
+
- [package]: Update dependencies.
|
|
33
|
+
- [package]: Upgrade package.
|
|
28
34
|
|
|
29
35
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
30
36
|
|
package/README.md
CHANGED
|
@@ -58,13 +58,13 @@ See the complete guidelines on [Matterbridge](https://matterbridge.io) for more
|
|
|
58
58
|
Install it with Node.js:
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
sudo npm install mb-service-linux --global --omit=dev
|
|
61
|
+
sudo npm install matterbridge mb-service-linux --global --omit=dev
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
Or install it with Bun:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
bun add mb-service-linux --global --omit=dev
|
|
67
|
+
bun add matterbridge mb-service-linux --global --omit=dev
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
Create a root-owned service file when Matterbridge is installed globally with npm:
|
|
@@ -75,7 +75,7 @@ sudo mb-service enable
|
|
|
75
75
|
sudo mb-service start
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
Create a user-owned service file when Matterbridge is installed
|
|
78
|
+
Create a user-owned service file when Matterbridge is installed globally with npm (no sudo required):
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
81
|
mb-service create
|
|
@@ -83,7 +83,7 @@ mb-service enable
|
|
|
83
83
|
mb-service start
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
When using Bun, create and manage the user-owned service without sudo (--bun is mandatory
|
|
86
|
+
When using Bun, create and manage the user-owned service without sudo (--bun is mandatory since the bin still starts with the `#!/usr/bin/env node` shebang):
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
89
|
bunx --bun mb-service create
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mb-service-linux",
|
|
3
|
-
"version": "2.0.3
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "mb-service-linux",
|
|
9
|
-
"version": "2.0.3
|
|
9
|
+
"version": "2.0.3",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"bin": {
|
|
12
|
-
"mb-service": "bin/mb-service"
|
|
12
|
+
"mb-service": "dist/bin/mb-service.js"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mb-service-linux",
|
|
3
|
-
"version": "2.0.3
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "Matterbridge service command line interface",
|
|
5
5
|
"author": "https://github.com/Luligu",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -52,10 +52,9 @@
|
|
|
52
52
|
"node": ">=20.19.0 <21.0.0 || >=22.13.0 <23.0.0 || >=24.0.0 <25.0.0 || >=26.0.0 <27.0.0"
|
|
53
53
|
},
|
|
54
54
|
"bin": {
|
|
55
|
-
"mb-service": "bin/mb-service"
|
|
55
|
+
"mb-service": "dist/bin/mb-service.js"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
|
-
"bin",
|
|
59
58
|
"dist",
|
|
60
59
|
"npm-shrinkwrap.json",
|
|
61
60
|
"CHANGELOG.md"
|
package/bin/mb-service
DELETED