@vcmap/plugin-cli 2.0.2 → 2.0.5
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/README.md +0 -4
- package/assets/helloWorld/src/helloWorld.vue +1 -1
- package/package.json +6 -2
- package/src/create.js +0 -1
- package/src/serve.js +0 -1
package/README.md
CHANGED
|
@@ -7,9 +7,6 @@
|
|
|
7
7
|
|
|
8
8
|
The `vcmplugin` cli helps develop and build plugins for the **VC Map**.
|
|
9
9
|
|
|
10
|
-
For more information on plugin development refer to [map plugin examples](https://github.com/virtualcitySYSTEMS/map-plugin-examples),
|
|
11
|
-
which provides documentations and a tutorial on plugin development.
|
|
12
|
-
|
|
13
10
|
## Features
|
|
14
11
|
|
|
15
12
|
- Creating basic plugin structure
|
|
@@ -116,7 +113,6 @@ as peer dependencies if you use them in your plugin:
|
|
|
116
113
|
- @vcmap/core
|
|
117
114
|
- @vcmap/cesium
|
|
118
115
|
- ol
|
|
119
|
-
- @vcsuite/ui-components
|
|
120
116
|
- vue
|
|
121
117
|
- @vue/composition-api
|
|
122
118
|
- vuetify
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vcmap/plugin-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "A CLI to help develop and build plugins for the VC Map",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -41,11 +41,15 @@
|
|
|
41
41
|
"vue-template-compiler": "^2.6.14"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@vcmap/ui": "^5.0.0-rc.
|
|
44
|
+
"@vcmap/ui": "^5.0.0-rc.9",
|
|
45
|
+
"vue": "^2.6.14"
|
|
45
46
|
},
|
|
46
47
|
"peerDependenciesMeta": {
|
|
47
48
|
"@vcmap/ui": {
|
|
48
49
|
"optional": true
|
|
50
|
+
},
|
|
51
|
+
"vue": {
|
|
52
|
+
"optional": true
|
|
49
53
|
}
|
|
50
54
|
},
|
|
51
55
|
"devDependencies": {
|
package/src/create.js
CHANGED
|
@@ -174,7 +174,6 @@ export default async function create() {
|
|
|
174
174
|
];
|
|
175
175
|
|
|
176
176
|
const peerDependencyChoices = [
|
|
177
|
-
{ title: '@vcsuite/ui-components', value: '@vcsuite/ui-components', selected: true },
|
|
178
177
|
{ title: '@vcmap/core', value: '@vcmap/core' },
|
|
179
178
|
{ title: '@vcmap/cesium', value: '@vcmap/cesium' },
|
|
180
179
|
{ title: 'ol', value: 'ol@~6.13.0' },
|