kagami-cli 0.1.1 → 0.1.2

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/plugins.js +3 -3
  2. package/package.json +1 -1
package/dist/plugins.js CHANGED
@@ -87,8 +87,8 @@ function discoverPlugins() {
87
87
  const plugins = {};
88
88
  if (!fs.existsSync(nodeModules))
89
89
  return plugins;
90
- // Check @kagami scope
91
- const kagamiScope = path.join(nodeModules, '@kagami');
90
+ // Check @kagami-cli scope
91
+ const kagamiScope = path.join(nodeModules, '@kagami-cli');
92
92
  if (fs.existsSync(kagamiScope)) {
93
93
  const dirs = fs.readdirSync(kagamiScope);
94
94
  for (const dir of dirs) {
@@ -102,7 +102,7 @@ function discoverPlugins() {
102
102
  }
103
103
  }
104
104
  catch (e) {
105
- console.warn(`Failed to load plugin @kagami/${dir}:`, e);
105
+ console.warn(`Failed to load plugin @kagami-cli/${dir}:`, e);
106
106
  }
107
107
  }
108
108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kagami-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI for kagami",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",