lumia-plugin 0.3.0 → 0.3.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.
@@ -5,6 +5,6 @@
5
5
  "description": "Internal template illustrating settings, actions, variables, and alerts for Lumia Stream plugins.",
6
6
  "main": "main.js",
7
7
  "dependencies": {
8
- "@lumiastream/plugin": "^0.3.0"
8
+ "@lumiastream/plugin": "^0.3.1"
9
9
  }
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumia-plugin",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Command-line tools for creating, building, and validating Lumia Stream plugins.",
5
5
  "bin": {
6
6
  "lumia-plugin": "scripts/cli.js"
@@ -24,7 +24,7 @@
24
24
  "author": "Lumia Stream",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@lumiastream/plugin": "^0.3.0",
27
+ "@lumiastream/plugin": "^0.3.1",
28
28
  "jszip": "3.10.1"
29
29
  }
30
30
  }
package/scripts/utils.js CHANGED
@@ -88,7 +88,6 @@ async function collectFiles(pluginDir, ignore = DEFAULT_IGNORE) {
88
88
 
89
89
  // Skip bundled Lumia packages in node_modules
90
90
  if (
91
- relative === "node_modules/@lumiastream" ||
92
91
  relative.startsWith("node_modules/@lumiastream/plugin") ||
93
92
  relative.startsWith("node_modules/lumia-plugin")
94
93
  ) {