@mappedin/maplibre-overlay 6.0.1-beta.57 → 6.0.1-beta.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mappedin/maplibre-overlay",
3
- "version": "6.0.1-beta.57",
3
+ "version": "6.0.1-beta.59",
4
4
  "homepage": "https://developer.mappedin.com/",
5
5
  "private": false,
6
6
  "main": "lib/esm/index.js",
@@ -17,7 +17,7 @@
17
17
  "dependencies": {},
18
18
  "peerDependencies": {
19
19
  "maplibre-gl": "^5.6.0",
20
- "@mappedin/mappedin-js": "^6.1.1"
20
+ "@mappedin/mappedin-js": "^6.4.0"
21
21
  },
22
22
  "devDependencies": {},
23
23
  "volta": {
@@ -25,13 +25,15 @@
25
25
  },
26
26
  "scripts": {
27
27
  "start": "pnpm build && concurrently \"node scripts/build.mjs --watchChanges\" \"node scripts/start.mjs\"",
28
- "build": "pnpm clean && tsc -b && node scripts/build.mjs",
28
+ "build": "pnpm clean && pnpm types && node scripts/build.mjs",
29
29
  "build:prod": "cross-env NODE_ENV=production pnpm build",
30
- "types": "tsc -b",
30
+ "build:examples": "node ../scripts/build-examples.mjs maplibre-overlay",
31
+ "types": "tsc -b tsconfig.build.json",
31
32
  "test": "NODE_ENV=test jest",
32
33
  "test:cov": "NODE_ENV=test jest --coverage",
33
34
  "version:ci": "pnpm version --no-commit-hooks --no-git-tag-version",
34
35
  "clean": "rm -rf lib/** && rm -rf examples/dist/**",
35
- "docs": "pnpm build && typedoc"
36
+ "docs": "pnpm build && pnpm docs:build",
37
+ "docs:build": "typedoc"
36
38
  }
37
39
  }