grg-kit-cli 0.6.0 → 0.6.1
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/commands/init.js +3 -0
- package/package.json +1 -1
package/commands/init.js
CHANGED
|
@@ -253,6 +253,9 @@ async function init(options) {
|
|
|
253
253
|
console.log(chalk.gray(' 2. Run'), chalk.cyan('grg list blocks'), chalk.gray('to see available blocks'));
|
|
254
254
|
console.log(chalk.gray(' 3. Add blocks with'), chalk.cyan('grg add block --auth'));
|
|
255
255
|
console.log();
|
|
256
|
+
|
|
257
|
+
// Explicitly exit to close any lingering handles (e.g., from degit)
|
|
258
|
+
process.exit(0);
|
|
256
259
|
}
|
|
257
260
|
|
|
258
261
|
module.exports = { init };
|