Skip to content

Commit 4c6d4b8

Browse files
Merge pull request #232 from studiometa/bugfix/mapbox-event-binding
[Bugfix] Fix mapbox event binding
2 parents 7199a13 + 6fffff4 commit 4c6d4b8

17 files changed

+1412
-121
lines changed

.github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: npm run lint
3636

3737
unit:
38-
runs-on: macos-latest
38+
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@v4
4141
- uses: actions/setup-node@v4
@@ -44,6 +44,8 @@ jobs:
4444
cache: npm
4545
- name: Install dependencies
4646
run: npm install
47+
- name: Install Playwright Dependencies
48+
run: npx playwright install chromium --with-deps
4749
- name: Run tests
4850
run: npm run test -- -- --retry=3 --coverage.enabled
4951
- name: Upload coverage to Codecov

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format
44

55
## [Unreleased]
66

7+
### Fixed
8+
9+
- Fix Mapbox event binding ([#231](https://github.com/studiometa/vue-mapbox-gl/issues/231), [#232](https://github.com/studiometa/vue-mapbox-gl/pull/232), [882baca](https://github.com/studiometa/vue-mapbox-gl/commit/882baca))
10+
711
## [v2.7.0-alpha.0](https://github.com/studiometa/vue-mapbox-gl/compare/2.6.0...2.7.0-alpha.0) (2025-01-02)
812

913
### Added

eslint.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export default defineConfig(
1111
...globals.browser,
1212
},
1313
},
14+
rules: {
15+
'vue/valid-define-emits': 'off',
16+
},
1417
},
1518
{
1619
ignores: ['**/.nuxt/**', '**/.output/**'],

0 commit comments

Comments
 (0)