@maptiler/sdk 3.10.0-rc.2 → 3.10.1-rc.1
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/dist/maptiler-sdk.mjs +12 -3
- package/dist/maptiler-sdk.mjs.map +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maptiler/sdk",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.1-rc.1",
|
|
4
4
|
"description": "The Javascript & TypeScript map SDK tailored for MapTiler Cloud",
|
|
5
5
|
"author": "MapTiler",
|
|
6
6
|
"module": "dist/maptiler-sdk.mjs",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"build-css": "mkdir -p dist build && node scripts/replace-path-with-content.js src/style/style_template.css dist/tmp_maptiler-sdk.css && cat node_modules/maplibre-gl/dist/maplibre-gl.css dist/tmp_maptiler-sdk.css > dist/maptiler-sdk.css && rm dist/tmp_maptiler-sdk.css && cp dist/maptiler-sdk.css build/maptiler-sdk.css",
|
|
50
50
|
"build-umd": "tsc && NODE_ENV=production vite build -c vite.config-umd.ts",
|
|
51
51
|
"build-es": "tsc && NODE_ENV=production vite build -c vite.config-es.ts",
|
|
52
|
-
"build": "npm run build-es
|
|
53
|
-
"make": "npm run
|
|
52
|
+
"build": "npm run build-es && npm run build-umd && npm run build-css",
|
|
53
|
+
"make": "npm run build",
|
|
54
54
|
"e2e:serve": "npm run build-css && tsc --project ./e2e && NODE_ENV=development vite -c vite.config-e2e.ts",
|
|
55
55
|
"e2e:local": "npx playwright test --config=playwright.config.ts --ui",
|
|
56
56
|
"e2e:ci": "npm run build-css && concurrently --kill-others --success first \"tsc --project ./e2e && NODE_ENV=production vite -c vite.config-e2e.ts\" \"npx playwright test --config=playwright.config.ts\"",
|