vovk-cli 0.0.1-draft.39 → 0.0.1-draft.40

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.
@@ -278,7 +278,7 @@ export class VovkDev {
278
278
  const now = Date.now();
279
279
  this.#projectInfo = await getProjectInfo();
280
280
  const { log, config, cwd, apiDir } = this.#projectInfo;
281
- log.info('Starting');
281
+ log.info('Starting...');
282
282
  if (config.devHttps) {
283
283
  const agent = new Agent({
284
284
  connect: {
@@ -320,10 +320,10 @@ export class VovkDev {
320
320
  }
321
321
  });
322
322
  }
323
- this.#watch(() => {
324
- log.info(`Ready in ${Date.now() - now}ms`);
325
- });
326
323
  }, 5000);
324
+ this.#watch(() => {
325
+ log.info(`Ready in ${Date.now() - now}ms`);
326
+ });
327
327
  }
328
328
  }
329
329
  const env = process.env;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-draft.39",
3
+ "version": "0.0.1-draft.40",
4
4
  "bin": {
5
5
  "vovk": "./dist/index.mjs"
6
6
  },