@c4t4/heyamigo 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.
package/dist/cli/setup.js CHANGED
@@ -393,8 +393,7 @@ export async function runSetup() {
393
393
  validate: (v) => {
394
394
  if (!v || !v.trim())
395
395
  return 'Required';
396
- const { existsSync: ex } = require('fs');
397
- if (!ex(v.trim()))
396
+ if (!existsSync(v.trim()))
398
397
  return 'Folder not found';
399
398
  return undefined;
400
399
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c4t4/heyamigo",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "WhatsApp AI bot powered by Claude with long-term memory, browser control, and role-based access",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",