okai 0.0.8 → 0.0.9
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/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -518,6 +518,8 @@ function chooseFile(ctx, info, gist) {
|
|
518
518
|
const fullTsdPath = path.join(info.slnDir, relativeServiceModelDir, tsdFileName);
|
519
519
|
const fullApiPath = path.join(info.slnDir, relativeServiceModelDir, apiFileName);
|
520
520
|
const fullMigrationPath = path.join(info.slnDir, relativeMigrationDir, migrationFileName);
|
521
|
+
const clearScreen = blessed.screen();
|
522
|
+
clearScreen.render();
|
521
523
|
if (!fs.existsSync(path.dirname(fullTsdPath))) {
|
522
524
|
console.log(`Directory does not exist: ${path.dirname(fullTsdPath)}`);
|
523
525
|
process.exit(0);
|