@lark-apaas/fullstack-cli 1.1.13-alpha.0 → 1.1.13-alpha.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -897,6 +897,7 @@ async function install(namesWithVersion) {
897
897
  }
898
898
  const results = [];
899
899
  for (const nameWithVersion of namesWithVersion) {
900
+ console.log(`[action-plugin] Processing ${nameWithVersion}...`);
900
901
  const result = await installOne(nameWithVersion);
901
902
  results.push(result);
902
903
  }
@@ -1729,8 +1730,9 @@ async function migrateJsonFiles(options) {
1729
1730
  // src/commands/migration/versions/v001_capability/plugin-installer/detector.ts
1730
1731
  import fs11 from "fs";
1731
1732
  function isPluginInstalled2(pluginKey) {
1733
+ const actionPlugins = readActionPlugins();
1732
1734
  const manifestPath = getPluginManifestPath2(pluginKey);
1733
- return fs11.existsSync(manifestPath);
1735
+ return fs11.existsSync(manifestPath) && !!actionPlugins[pluginKey];
1734
1736
  }
1735
1737
  function detectPluginsToInstall(capabilities) {
1736
1738
  const pluginKeys = /* @__PURE__ */ new Set();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/fullstack-cli",
3
- "version": "1.1.13-alpha.0",
3
+ "version": "1.1.13-alpha.1",
4
4
  "description": "CLI tool for fullstack template management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",