terra-draw
Advanced tools
Comparing version 0.0.1-alpha.12 to 0.0.1-alpha.13
@@ -5,2 +5,13 @@ # Changelog | ||
### [0.0.1-alpha.13](https://github.com/JamesLMilner/terra-draw/compare/v0.0.1-alpha.12...v0.0.1-alpha.13) (2022-12-20) | ||
### Chore | ||
* add initial tests feature styling tests for circle, freehand and polygon ([066967c](https://github.com/JamesLMilner/terra-draw/commit/066967cd56c879186207dad9f912a1e6435904e5)) | ||
* add TerraDrawMapLibreGLAdapter and TerraDrawOpenLayersAdapter to docs ([6b78c01](https://github.com/JamesLMilner/terra-draw/commit/6b78c01df8f9bad83738bf560a9b365c7fa01290)) | ||
* add TerraDrawOpenLayersAdapter to terra-draw exports ([c5f3ade](https://github.com/JamesLMilner/terra-draw/commit/c5f3ade9b9cf51b99aa78d3730581dac6f37f0fd)) | ||
* remove default controls from all maps ([6ffde55](https://github.com/JamesLMilner/terra-draw/commit/6ffde55b4c8cf95b1fb46f76db07d47d37504c96)) | ||
* remove outdated list of adapters in README introduction ([21a6aca](https://github.com/JamesLMilner/terra-draw/commit/21a6aca27f15f0f7d90bc434865f4d362960d8d9)) | ||
### [0.0.1-alpha.12](https://github.com/JamesLMilner/terra-draw/compare/v0.0.1-alpha.11...v0.0.1-alpha.12) (2022-12-11) | ||
@@ -7,0 +18,0 @@ |
{ | ||
"name": "terra-draw", | ||
"version": "0.0.1-alpha.12", | ||
"version": "0.0.1-alpha.13", | ||
"description": "Frictionless map drawing across mapping provider", | ||
"scripts": { | ||
"docs": "typedoc --out docs src/terra-draw.ts --exclude 'src/geometry/**/*.ts' --exclude 'src/test/**/*.ts' --exclude 'src/util/**/*.ts'", | ||
"docs": "typedoc", | ||
"docs:serve": "serve ./docs", | ||
@@ -8,0 +8,0 @@ "release": "standard-version", |
@@ -7,3 +7,3 @@ <img src="https://terradraw.io/imgs/logo.png" alt="Terra Draw Logo" width="400"/> | ||
TerraDraw centralises map drawing logic and provides a host of out the box drawing modes that work across map providers (currently Leaflet, Mapbox, Google) via adapters. | ||
TerraDraw centralises map drawing logic and provides a host of out the box drawing modes that work across different JavaScript mapping libraries. It also also you bring your own modes! | ||
@@ -10,0 +10,0 @@ ### Support |
{ | ||
"compilerOptions": { | ||
"outDir": "./dist/", | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"module": "es6", | ||
"target": "es6", | ||
"jsx": "react", | ||
"sourceMap": true, | ||
"allowJs": true, | ||
"moduleResolution": "node", | ||
"allowSyntheticDefaultImports": true | ||
} | ||
} | ||
"compilerOptions": { | ||
"outDir": "./dist/", | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"module": "es6", | ||
"target": "es6", | ||
"jsx": "react", | ||
"sourceMap": true, | ||
"allowJs": true, | ||
"moduleResolution": "node", | ||
"allowSyntheticDefaultImports": true | ||
}, | ||
"typedocOptions": { | ||
"entryPoints": [ | ||
"src/terra-draw.ts" | ||
], | ||
"exclude": [ | ||
"src/geometry/**/*.ts", | ||
"src/test/**/*.ts", | ||
"src/util/**/*.ts" | ||
], | ||
"out": "docs", | ||
"skipErrorChecking": true | ||
// "compilerOptions": { | ||
// "skipLibCheck": true | ||
// } | ||
} | ||
} |
1615836
2331