@topogram/cli 0.3.34 → 0.3.35

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/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@topogram/cli",
3
- "version": "0.3.34",
3
+ "version": "0.3.35",
4
4
  "description": "Topogram CLI for checking Topogram workspaces and generating app bundles.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
package/src/cli.js CHANGED
@@ -1277,7 +1277,7 @@ function declaredGeneratorPackages(cwd) {
1277
1277
  continue;
1278
1278
  }
1279
1279
  for (const name of Object.keys(dependencies)) {
1280
- if (name.includes("topogram-generator")) {
1280
+ if (name.includes("topogram-generator") || name.startsWith("@topogram/generator-")) {
1281
1281
  packages.add(name);
1282
1282
  }
1283
1283
  }