@macrostrat/cesium-martini 1.5.2 → 1.5.3

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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -150,6 +150,15 @@ The configuration also takes a single number and array.
150
150
 
151
151
  ## Changelog
152
152
 
153
+ ### `[1.5.3]`: February 2025
154
+
155
+ - Removed `source` field from package.json, as it should be reserved for modules that
156
+ can be bundled without special treatment (e.g., web worker compilation).
157
+
158
+ ### `[1.5.2]`: February 2025
159
+
160
+ - Added `source` field to package.json
161
+
153
162
  ### `[1.5.1]`: February 2025
154
163
 
155
164
  - Remove `.idea` files from bundle
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@macrostrat/cesium-martini",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "On-the-fly meshing of raster elevation tiles for the CesiumJS virtual globe",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "source": "./src/index.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "source": "./src/index.ts",
11
10
  "import": "./dist/index.js",
12
11
  "require": "./dist/index.cjs"
13
12
  }