Skip to content

Commit 69bc344

Browse files
Merge pull request #226 from studiometa/feature/typescript
[Feature] TypeScript
2 parents 79e02b9 + 21a8b9c commit 69bc344

39 files changed

+2197
-664
lines changed

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+
### Added
8+
9+
- 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))
10+
711
## [v2.6.0](https://github.com/studiometa/vue-mapbox-gl/compare/2.5.0...2.6.0) (2025-01-02)
812

913
### 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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { defineConfig, js, vue, prettier, globals } from '@studiometa/eslint-config';
1+
import { defineConfig, ts, vueTs, prettier, globals } from '@studiometa/eslint-config';
22

33
export default defineConfig(
4-
js,
5-
vue,
4+
ts,
5+
vueTs,
66
prettier,
77
{
88
files: ['packages/{demo,vue-mapbox-gl}/**/*.{js,vue}'],

0 commit comments

Comments
 (0)