generator-agent 1.0.11 → 1.0.12

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/bin/install.js +2 -2
  2. package/package.json +1 -1
package/bin/install.js CHANGED
@@ -40,12 +40,12 @@ function runInstall(targetRoot = process.cwd()) {
40
40
 
41
41
  // Delete the entire generatoragent package from node_modules after copying
42
42
  try {
43
- const nodeModulesPath = path.join(targetRoot, 'node_modules', 'generatoragent');
43
+ const nodeModulesPath = path.join(targetRoot, 'node_modules', 'generator-agent');
44
44
  if (fs.existsSync(nodeModulesPath)) {
45
45
  fs.rmSync(nodeModulesPath, { recursive: true, force: true });
46
46
  }
47
47
  } catch (err) {
48
- console.log('Note: Could not remove generatoragent from node_modules:', err.message);
48
+ console.log('Note: Could not remove generator-agent from node_modules:', err.message);
49
49
  }
50
50
 
51
51
  // eslint-disable-next-line no-console
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "generator-agent",
3
3
  "displayName": "GeneratorAgent",
4
4
  "description": "Custom agent that responds with greetings and follows specific instructions",
5
- "version": "1.0.11",
5
+ "version": "1.0.12",
6
6
  "publisher": "Ishwarya",
7
7
  "author": "Ishwarya",
8
8
  "license": "MIT",