Skip to content

Commit aee6f8e

Browse files
committed
Merge branch 'release/2.7.0-alpha.0'
2 parents 45ff630 + e0e161a commit aee6f8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+4514
-14632
lines changed

.eslintrc.js

-24
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!---
2+
☝️ PR title should be prefixed by [Feature], [Bugfix], [Release] or [Hotfix]
3+
-->
4+
5+
### 🔗 Linked issue
6+
7+
<!-- Please ensure there is an open issue and mention its number as #123 -->
8+
9+
### ❓ Type of change
10+
11+
<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply. -->
12+
13+
- [ ] 📖 Documentation (updates to the documentation, readme or JSdoc annotations)
14+
- [ ] 🐞 Bug fix (a non-breaking change that fixes an issue)
15+
- [ ] 👌 Enhancement (improving an existing functionality like performance)
16+
- [ ] ✨ New feature (a non-breaking change that adds functionality)
17+
- [ ] 🧹 Chore (updates to the build process or auxiliary tools and libraries)
18+
- [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to change)
19+
20+
### 📚 Description
21+
22+
<!-- Describe your changes in detail -->
23+
<!-- Why is this change required? What problem does it solve? -->
24+
<!-- If it resolves an open issue, please link to the issue here. For example "Resolves #1337" -->
25+
26+
### 📝 Checklist
27+
28+
<!-- Put an `x` in all the boxes that apply. -->
29+
<!-- If your change requires a documentation PR, please link it appropriately -->
30+
<!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
31+
32+
- [ ] I have linked an issue or discussion.
33+
- [ ] I have added tests (if possible).
34+
- [ ] I have updated the documentation accordingly.
35+
- [ ] I have updated the changelog.

.gitignore

+2-21
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,11 @@
1-
# OS files
21
.DS_Store
32
node_modules
4-
5-
# Yarn files
6-
yarn.lock
7-
8-
# Log files
93
npm-debug.log*
10-
yarn-debug.log*
11-
yarn-error.log*
12-
13-
# Editor directories and files
14-
.idea
15-
.vscode
16-
*.suo
17-
*.ntvs*
18-
*.njsproj
19-
*.sln
20-
*.sw?
21-
*.sublime-*
22-
23-
# Build files
244
.env
255
/dist/
266
/packages/docs/.vitepress/dist/
27-
/packages/docs/.vitepress/cache
7+
/packages/docs/.vitepress/cache/
288
/packages/demo/.nuxt/
299
/packages/demo/.output/
3010
/packages/coverage/
11+
.eslintcache

.prettierrc.js

-3
This file was deleted.

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [v2.7.0-alpha.0](https://github.com/studiometa/vue-mapbox-gl/compare/2.6.0...2.7.0-alpha.0) (2025-01-02)
8+
9+
### Added
10+
11+
- Add types ([#107](https://github.com/studiometa/vue-mapbox-gl/issues/107), [#226](https://github.com/studiometa/vue-mapbox-gl/pull/226), [539cc32](https://github.com/studiometa/vue-mapbox-gl/commit/539cc32))
12+
713
## [v2.6.0](https://github.com/studiometa/vue-mapbox-gl/compare/2.5.0...2.6.0) (2025-01-02)
814

915
### Added

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# 🗺 Vue 3 Mapbox GL
22

3-
[![NPM Version](https://img.shields.io/npm/v/@studiometa/vue-mapbox-gl.svg?style=flat-square)](https://www.npmjs.com/package/@studiometa/vue-mapbox-gl)
3+
[![NPM Version](https://img.shields.io/npm/v/@studiometa/vue-mapbox-gl.svg?style=flat&colorB=3e63dd&colorA=414853)](https://www.npmjs.com/package/@studiometa/vue-mapbox-gl/)
4+
[![Downloads](https://img.shields.io/npm/dm/@studiometa/vue-mapbox-gl?style=flat&colorB=3e63dd&colorA=414853)](https://www.npmjs.com/package/@studiometa/vue-mapbox-gl/)
5+
[![Size](https://img.shields.io/bundlephobia/minzip/@studiometa/vue-mapbox-gl?style=flat&colorB=3e63dd&colorA=414853&label=size)](https://bundlephobia.com/package/@studiometa/vue-mapbox-gl)
6+
[![Dependency Status](https://img.shields.io/librariesio/release/npm/@studiometa/vue-mapbox-gl?style=flat&colorB=3e63dd&colorA=414853)](https://david-dm.org/studiometa/vue-mapbox-gl)
7+
![Codecov](https://img.shields.io/codecov/c/github/studiometa/vue-mapbox-gl?style=flat&colorB=3e63dd&colorA=414853)
48

59
> A small components library to use Mapbox GL in Vue 3 app.
610

eslint.config.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { defineConfig, ts, vueTs, prettier, globals } from '@studiometa/eslint-config';
2+
3+
export default defineConfig(
4+
ts,
5+
vueTs,
6+
prettier,
7+
{
8+
files: ['packages/{demo,vue-mapbox-gl}/**/*.{js,vue}'],
9+
languageOptions: {
10+
globals: {
11+
...globals.browser,
12+
},
13+
},
14+
},
15+
{
16+
ignores: ['**/.nuxt/**', '**/.output/**'],
17+
},
18+
);

0 commit comments

Comments
 (0)