matterbridge-test 3.0.0-dev-20260620-19afdd0 → 3.0.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/CHANGELOG.md +3 -3
- package/README.md +30 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
<!-- eslint-disable markdown/no-missing-label-refs -->
|
|
2
|
-
|
|
3
1
|
# <img src="https://matterbridge.io/assets/matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px"> Matterbridge test plugin changelog
|
|
4
2
|
|
|
5
3
|
[](https://www.npmjs.com/package/matterbridge-test)
|
|
@@ -49,8 +47,10 @@ If you like this project and find it useful, please consider giving it a star on
|
|
|
49
47
|
- [workflow]: Bump `.github\workflows\build.yml` config to v.2.0.5.
|
|
50
48
|
- [workflow]: Bump `.github\workflows\codecov.yml` config to v.2.0.6.
|
|
51
49
|
- [workflow]: Bump `.github\workflows\publish.yml` config to v.2.0.5.
|
|
52
|
-
- [oxlint]: Bump `oxlint` config to v.1.0.
|
|
50
|
+
- [oxlint]: Bump `oxlint` config to v.1.0.13.
|
|
53
51
|
- [oxfmt]: Bump `oxfmt` config to v.1.0.3.
|
|
52
|
+
- [devcontainer]: Bump `.devcontainer/devcontainer.json` config to v.1.0.4.
|
|
53
|
+
- [package]: Bump `.vscode/extensions.json` config to v.1.0.4.
|
|
54
54
|
|
|
55
55
|
<a href="https://www.buymeacoffee.com/luligugithub"><img src="https://matterbridge.io/assets/bmc-button.svg" alt="Buy me a coffee" width="80"></a>
|
|
56
56
|
|
package/README.md
CHANGED
|
@@ -57,3 +57,33 @@ See the guidelines on [Matterbridge](https://matterbridge.io) for more informati
|
|
|
57
57
|
## Style guide
|
|
58
58
|
|
|
59
59
|
See also the [Style Guide](./STYLEGUIDE.md) for JSDoc, naming, and logging conventions used in this repository.
|
|
60
|
+
|
|
61
|
+
## Copilot instructions
|
|
62
|
+
|
|
63
|
+
| File | Notes |
|
|
64
|
+
| ---------------------------------------------------------------- | ---------------------------------------------------------------- |
|
|
65
|
+
| `.github/copilot-instructions.md` | Main project instructions — always loaded |
|
|
66
|
+
| `.github/instructions/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — dedicated Copilot instruction file |
|
|
67
|
+
| `.github/instructions/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
68
|
+
|
|
69
|
+
## Claude instructions
|
|
70
|
+
|
|
71
|
+
| File | Notes |
|
|
72
|
+
| --------------------------------------------------------- | ----------------------------------------------------- |
|
|
73
|
+
| `CLAUDE.md` | Main project instructions — always loaded |
|
|
74
|
+
| `.claude/rules/matterbridge/matterbridge.instructions.md` | Matterbridge endpoint guide — loaded for all contexts |
|
|
75
|
+
| `.claude/rules/testing/unit-tests.instructions.md` | Testing standards — scoped to `**/*.test.ts` |
|
|
76
|
+
|
|
77
|
+
## Codex/Agents instructions
|
|
78
|
+
|
|
79
|
+
| File | Notes |
|
|
80
|
+
| ---------------------------- | ------------------------------------------------- |
|
|
81
|
+
| `AGENTS.md` | Main project instructions |
|
|
82
|
+
| `.codex/config.toml` | Codex project permissions, approvals, and profile |
|
|
83
|
+
| `.codex/rules/default.rules` | Codex command allow, prompt, and deny rules |
|
|
84
|
+
|
|
85
|
+
## Documentation
|
|
86
|
+
|
|
87
|
+
Refer to the Matterbridge [documentation](https://matterbridge.io) for other guidelines.
|
|
88
|
+
|
|
89
|
+
---
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge-test",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge-test",
|
|
9
|
-
"version": "3.0.0
|
|
9
|
+
"version": "3.0.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"engines": {
|
|
12
12
|
"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"
|