Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:

- name: Install matterbridge dependencies
working-directory: ../matterbridge
run: npm ci
run: npm ci --no-fund --no-audit

- name: Build matterbridge
working-directory: ../matterbridge
run: npm run build

- name: Link matterbridge globally
working-directory: ../matterbridge
run: npm link
run: npm link --no-fund --no-audit

- name: Install dependencies
run: npm ci
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:

- name: Install matterbridge dependencies
working-directory: ../matterbridge
run: npm ci
run: npm ci --no-fund --no-audit

- name: Build matterbridge
working-directory: ../matterbridge
run: npm run build

- name: Link matterbridge globally
working-directory: ../matterbridge
run: npm link
run: npm link --no-fund --no-audit

- name: Lint & test & build the plugin
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:

- name: Install matterbridge dependencies
working-directory: ../matterbridge
run: npm ci
run: npm ci --no-fund --no-audit

- name: Build matterbridge
working-directory: ../matterbridge
run: npm run build

- name: Link matterbridge globally
working-directory: ../matterbridge
run: npm link
run: npm link --no-fund --no-audit

- name: Lint & test & build the plugin
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:

- name: Install matterbridge dependencies
working-directory: ../matterbridge
run: npm ci
run: npm ci --no-fund --no-audit

- name: Build matterbridge
working-directory: ../matterbridge
run: npm run build

- name: Link matterbridge globally
working-directory: ../matterbridge
run: npm link
run: npm link --no-fund --no-audit

- name: Install plugin dependencies
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ screenshot/
src/
temp/
test/
vitest/

# Specific files that should be ignored
.gitattributes
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ If you like this project and find it useful, please consider giving it a star on
<img src="bmc-button.svg" alt="Buy me a coffee" width="120">
</a>

## [3.0.1] - 2025-11-14

### Changed

- [package]: Updated dependencies.
- [package]: Bumped package to automator v.2.0.12.
- [package]: Updated to the current Matterbridge signatures.
- [jest]: Updated jestHelpers to v.1.0.12.

<a href="https://www.buymeacoffee.com/luligugithub">
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
</a>

## [3.0.0] - 2025-11-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const jestConfig = {
...presetConfig,
testEnvironment: 'node',
moduleNameMapper: { '^(\\.{1,2}/.*)\\.js$': '$1' }, // Handle ESM imports by removing the .js extension
testPathIgnorePatterns: ['/node_modules/', '/dist/', '/vitest/', 'jestHelpers.ts'],
testPathIgnorePatterns: ['/node_modules/', '/dist/', '/vitest/', 'jestHelpers.test.ts'],
coveragePathIgnorePatterns: ['/node_modules/', '/dist/', '/vitest/', 'jestHelpers.ts'],
maxWorkers: '100%',
};
Expand Down
Loading
Loading