@shakil-dev/shakil-stack 1.5.2 → 1.5.3
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/bin/index.js +3 -1
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -623,10 +623,12 @@ export const ${moduleName}Validations = {
|
|
|
623
623
|
};
|
|
624
624
|
|
|
625
625
|
// --- CLI Structure ---
|
|
626
|
+
const packageJson = require('../package.json');
|
|
627
|
+
|
|
626
628
|
program
|
|
627
629
|
.name('shakil-stack')
|
|
628
630
|
.description('Full-stack EchoNet-style project generator CLI')
|
|
629
|
-
.version(
|
|
631
|
+
.version(packageJson.version);
|
|
630
632
|
|
|
631
633
|
program
|
|
632
634
|
.command('init')
|