heraspec 0.1.12 → 0.1.13
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/README.md
CHANGED
|
@@ -92,6 +92,8 @@ Here are some products built partially or entirely using the HeraSpec framework:
|
|
|
92
92
|
<li><a href="https://codecanyon.net/item/flexinote-for-perfex-crm/60590690" target="_blank">FlexNote for Perfex CRM</a> - Advanced note management with AI capabilities.</li>
|
|
93
93
|
<li><a href="https://codecanyon.net/item/polyutilities-for-perfex-crm-quick-access-menu-custom-js-css-and-more/49522529" target="_blank">PolyUtilities for Perfex CRM</a> - Essential toolkit for Perfex CRM customization.</li>
|
|
94
94
|
<li><a href="https://erp.polyxgo.com/code/project/demo-builder-for-perfex-crm" target="_blank">Demo Builder for Perfex CRM</a> - Automated demo instance creator.</li>
|
|
95
|
+
<li><a href="https://chromewebstore.google.com/detail/flexinote/oendkbllnfafakogepolfaonionlkehc" target="_blank">FlexNote - Sticky Notes for Web</a> - Create, manage, and customize notes directly on any webpage.<br>
|
|
96
|
+
GitHub: <a href="https://github.com/PolyXGO/FlexiNote-extension" target="_blank">FlexNote - Smart Sticky Notes</a></li>
|
|
95
97
|
<li><a href="https://erp.polyxgo.com/code/project/polymetrics" target="_blank">PolyMetrics</a> - Product price analysis extension for Envato.</li>
|
|
96
98
|
<li><a href="https://erp.polyxgo.com/code/project/polydemo" target="_blank">PolyDemo</a> - Dynamic demonstration environment for web applications.</li>
|
|
97
99
|
<li><a href="https://erp.polyxgo.com/code/project/smart-payment-for-perfex-crm" target="_blank">Smart Payment for Perfex CRM</a> - Intelligent payment gateway integration.</li>
|
|
@@ -116,6 +118,20 @@ Here are some products built partially or entirely using the HeraSpec framework:
|
|
|
116
118
|
<li><a href="https://wordpress.org/plugins/team-manager-unified/" target="_blank">Team Manager Unified</a></li>
|
|
117
119
|
</ul>
|
|
118
120
|
|
|
121
|
+
## Support
|
|
122
|
+
|
|
123
|
+
<div align="center">
|
|
124
|
+
|
|
125
|
+
If you find this source code helpful, consider buying me a coffee to support my work! ☕
|
|
126
|
+
|
|
127
|
+
[](https://paypal.me/polyxgo)
|
|
128
|
+
|
|
129
|
+
-or-
|
|
130
|
+
|
|
131
|
+
<img src="https://polyxgo.com/wp-content/uploads/2026/01/CafeCodeTrauNheNgokNgok.png" alt="Donate QR Code" width="300" />
|
|
132
|
+
|
|
133
|
+
</div>
|
|
134
|
+
|
|
119
135
|
## License
|
|
120
136
|
|
|
121
137
|
MIT License - see [LICENSE](./LICENSE) file for details.
|
package/bin/heraspec.js
CHANGED
|
@@ -2756,6 +2756,15 @@ var SkillCommand = class {
|
|
|
2756
2756
|
}
|
|
2757
2757
|
}
|
|
2758
2758
|
destPath = path11.join(skillsDir, templateInfo.projectType, effectiveSkillName);
|
|
2759
|
+
const legacyPath = path11.join(skillsDir, templateInfo.projectType, `${templateInfo.projectType}:${effectiveSkillName}`);
|
|
2760
|
+
if (legacyPath !== destPath && await FileSystemUtils.fileExists(legacyPath)) {
|
|
2761
|
+
spinner.info(`Cleaning up legacy prefixed skill folder: ${legacyPath}`);
|
|
2762
|
+
try {
|
|
2763
|
+
await FileSystemUtils.removeDirectory(legacyPath, true);
|
|
2764
|
+
} catch (cleanupError) {
|
|
2765
|
+
spinner.warn(`Could not remove legacy folder ${legacyPath}: ${cleanupError instanceof Error ? cleanupError.message : "Unknown error"}`);
|
|
2766
|
+
}
|
|
2767
|
+
}
|
|
2759
2768
|
}
|
|
2760
2769
|
const isUpdate = await FileSystemUtils.fileExists(destPath);
|
|
2761
2770
|
if (isUpdate) {
|