Skip to content

Commit 638d0a5

Browse files
committed
Merge branch 'release/2.7.0-alpha.2'
2 parents 64a7168 + 5cdbbae commit 638d0a5

File tree

8 files changed

+40
-82
lines changed

8 files changed

+40
-82
lines changed

.github/workflows/publish.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
publish-and-release:
10-
runs-on: macos-latest
10+
runs-on: ubuntu-latest
1111
permissions:
1212
contents: write
1313
id-token: write
@@ -36,6 +36,9 @@ jobs:
3636

3737
- run: npm install --no-audit --no-fund
3838

39+
- name: Install Playwright Dependencies
40+
run: npx playwright install chromium --with-deps
41+
3942
- run: npm run build
4043

4144
- name: Test

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [v2.7.0-alpha.2](https://github.com/studiometa/vue-mapbox-gl/compare/2.7.0-alpha.1...2.7.0-alpha.2) (2025-01-24)
8+
9+
### Fixed
10+
11+
- Fix NPM publish ([8a9df54](https://github.com/studiometa/vue-mapbox-gl/commit/8a9df54))
12+
13+
### Dependencies
14+
15+
- Update dependency vue-tsc to v2.2.0 ([#229](https://github.com/studiometa/vue-mapbox-gl/pull/229), [40dce9e](https://github.com/studiometa/vue-mapbox-gl/commit/40dce9e))
16+
717
## [v2.7.0-alpha.1](https://github.com/studiometa/vue-mapbox-gl/compare/2.7.0-alpha.0...2.7.0-alpha.1) (2025-01-24)
818

919
### Fixed

package-lock.json

+20-75
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@studiometa/vue-mapbox-gl-workspace",
33
"private": true,
4-
"version": "2.7.0-alpha.1",
4+
"version": "2.7.0-alpha.2",
55
"type": "module",
66
"workspaces": [
77
"packages/*"
@@ -32,6 +32,6 @@
3232
"@vue/tsconfig": "0.7.0",
3333
"vite": "6.0.9",
3434
"vite-plugin-dts": "4.5.0",
35-
"vue-tsc": "2.1.10"
35+
"vue-tsc": "2.2.0"
3636
}
3737
}

packages/demo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@studiometa/vue-mapbox-gl-demo",
3-
"version": "2.7.0-alpha.1",
3+
"version": "2.7.0-alpha.2",
44
"scripts": {
55
"dev": "nuxt dev",
66
"build": "nuxt build"

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@studiometa/vue-mapbox-gl-docs",
33
"private": true,
44
"type": "module",
5-
"version": "2.7.0-alpha.1",
5+
"version": "2.7.0-alpha.2",
66
"scripts": {
77
"dev": "vitepress",
88
"build": "vitepress build"

packages/tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@studiometa/vue-mapbox-gl-tests",
3-
"version": "2.7.0-alpha.1",
3+
"version": "2.7.0-alpha.2",
44
"type": "module",
55
"scripts": {
66
"test": "vitest"

packages/vue-mapbox-gl/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@studiometa/vue-mapbox-gl",
3-
"version": "2.7.0-alpha.1",
3+
"version": "2.7.0-alpha.2",
44
"description": "A small components library to use Mapbox GL in Vue 3.",
55
"homepage": "https://github.com/studiometa/vue-mapbox-gl#readme",
66
"bugs": {

0 commit comments

Comments
 (0)