geojson2svg
Advanced tools
Comparing version 1.3.5 to 1.3.6
@@ -7,2 +7,15 @@ ### Changelog | ||
#### [v1.3.6](https://github.com/gagan-bansal/geojson2svg/compare/v1.3.5...v1.3.6) | ||
> 17 July 2023 | ||
- fix: corrected the type definition file [`1a12487`](https://github.com/gagan-bansal/geojson2svg/commit/1a124876ee1423170b65747a4dedc38c25fff772) | ||
#### [v1.3.5](https://github.com/gagan-bansal/geojson2svg/compare/v1.3.4...v1.3.5) | ||
> 17 July 2023 | ||
- feat: type definition added [`37296cb`](https://github.com/gagan-bansal/geojson2svg/commit/37296cbe3c082bbd9775d98f459d516fae37227e) | ||
- ci: release command changed [`66dc35a`](https://github.com/gagan-bansal/geojson2svg/commit/66dc35a16b91822a979e3d62efaf04c04d7498f2) | ||
#### [v1.3.4](https://github.com/gagan-bansal/geojson2svg/compare/v1.3.3...v1.3.4) | ||
@@ -9,0 +22,0 @@ |
{ | ||
"name": "geojson2svg", | ||
"version": "1.3.5", | ||
"version": "1.3.6", | ||
"description": "Converts geojson to svg/path string given svg viewport size and maps extent.", | ||
@@ -13,5 +13,5 @@ "main": "src/main.js", | ||
"changelog": "auto-changelog --commit-limit=false && git add ./CHANGELOG.md && git commit --amend", | ||
"release:patch": "npm version patch && changelog", | ||
"release:minor": "npm version minor && changelog", | ||
"release:major": "npm version major && changelog", | ||
"release:patch": "npm version patch && npm run changelog", | ||
"release:minor": "npm version minor && npm run changelog", | ||
"release:major": "npm version major && npm run changelog", | ||
"watch": "mocha -w" | ||
@@ -18,0 +18,0 @@ }, |
@@ -85,6 +85,6 @@ /*** | ||
export default class g2svg { | ||
export default class GeoJSON2SVG { | ||
public constructor(options?: Options) | ||
public convert(geojson: GeoJSON, options?: Options): string | ||
public convert(geojson: GeoJSON, options?: Options): string[] | ||
} | ||
} |
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
471313
0