lumia-plugin 0.1.11 → 0.1.15

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.
@@ -7,13 +7,11 @@
7
7
  "website": "",
8
8
  "repository": "",
9
9
  "description": "Sample plugin that demonstrates Lumia Stream logging, variables, alerts, and settings.",
10
- "longDescription": "",
11
10
  "license": "MIT",
12
11
  "lumiaVersion": "^9.0.0",
13
- "keywords": ["sample", "demo", "lumia"],
12
+ "keywords": "sample, demo, lumia",
14
13
  "category": "examples",
15
14
  "icon": "",
16
- "screenshots": [],
17
15
  "changelog": "",
18
16
  "config": {
19
17
  "settings": [
@@ -5,6 +5,6 @@
5
5
  "description": "Internal template illustrating logging, variables, actions, and alerts for Lumia Stream plugins.",
6
6
  "main": "main.js",
7
7
  "dependencies": {
8
- "@lumiastream/plugin": "^0.1.0"
8
+ "@lumiastream/plugin": "^0.1.15"
9
9
  }
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumia-plugin",
3
- "version": "0.1.11",
3
+ "version": "0.1.15",
4
4
  "description": "Command-line tools for creating, building, and validating Lumia Stream plugins.",
5
5
  "bin": {
6
6
  "lumia-plugin": "scripts/cli.js"
@@ -20,7 +20,7 @@
20
20
  "author": "Lumia Stream",
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@lumiastream/plugin": "^0.1.11",
23
+ "@lumiastream/plugin": "^0.1.15",
24
24
  "jszip": "3.10.1"
25
25
  }
26
26
  }
@@ -81,18 +81,12 @@ async function updateManifest(manifestPath, pluginId, displayName) {
81
81
  manifest.description = manifest.description?.trim()
82
82
  ? manifest.description
83
83
  : `Describe what ${displayName} does.`;
84
- manifest.longDescription = manifest.longDescription || "";
85
84
  manifest.repository = manifest.repository || "";
86
85
  manifest.website = manifest.website || "";
87
86
  manifest.email = manifest.email || "";
88
87
  manifest.icon = manifest.icon || "";
89
- manifest.screenshots = ensureArray(manifest.screenshots);
90
88
  manifest.changelog = manifest.changelog || "";
91
- manifest.keywords = ensureArray(manifest.keywords);
92
-
93
- if (!manifest.keywords.includes(pluginId)) {
94
- manifest.keywords.push(pluginId);
95
- }
89
+ manifest.keywords = manifest.keywords || "";
96
90
 
97
91
  if (!manifest.main) {
98
92
  manifest.main = "main.js";