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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. 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);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "okai",
3
3
  "type": "module",
4
- "version": "0.0.8",
4
+ "version": "0.0.9",
5
5
  "bin": "./dist/okai.js",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",