@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 +1 -1
- package/dist/src/modules/developer/developer.service.js +1 -1
- package/dist/src/modules/developer/developer.service.js.map +1 -1
- package/dist/src/modules/hedhog/hedhog.service.js +1 -1
- package/dist/src/modules/hedhog/hedhog.service.js.map +1 -1
- package/dist/src/modules/hedhog/services/file-system.service.d.ts +2 -2
- package/dist/src/modules/hedhog/services/file-system.service.js +16 -10
- package/dist/src/modules/hedhog/services/file-system.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
|
@@ -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) {
|