@vcmap/plugin-cli 4.1.0 → 4.1.2

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/package.json +1 -1
  2. package/src/serve.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vcmap/plugin-cli",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "description": "A CLI to help develop and build plugins for the VC Map",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/src/serve.js CHANGED
@@ -120,6 +120,7 @@ export default async function serve(options) {
120
120
  const { peerDependencies } = await getPackageJson();
121
121
 
122
122
  const optimizationIncludes = [
123
+ 'geotiff',
123
124
  'fast-deep-equal',
124
125
  'rbush',
125
126
  'rbush-knn',
@@ -127,6 +128,7 @@ export default async function serve(options) {
127
128
  'semver',
128
129
  '@vcmap-cesium/engine',
129
130
  'vue',
131
+ 'geographiclib-geodesic',
130
132
  ];
131
133
 
132
134
  // We exclude ui dependencies from optimization, to allow plugins to use another version of the same plugin.