@hed-hog/cli 0.0.85 → 0.0.86

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hed-hog/cli",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "description": "HedHog CLI tool",
5
5
  "author": "HedHog",
6
6
  "private": false,
@@ -3409,7 +3409,7 @@ temp
3409
3409
  try {
3410
3410
  spinner.text = `Copying widgets for ${name}...`;
3411
3411
  await this.fileSystem.createDirectory(widgetsDestPath);
3412
- await this.fileSystem.copyDirectoryAddingEjsExtension(widgetsSourcePath, widgetsDestPath);
3412
+ await this.fileSystem.copyDirectoryAddingEjsExtension(widgetsSourcePath, widgetsDestPath, name);
3413
3413
  this.log(chalk.green(`Widgets copied successfully to ${widgetsDestPath}`));
3414
3414
  }
3415
3415
  catch (error) {