@youcan/app 1.2.0-beta.2 → 1.2.0-beta.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.
@@ -15,6 +15,8 @@ class AppWorker extends AbstractWorker {
15
15
  async boot() {
16
16
  }
17
17
  async run() {
18
+ await this.command.output.wait(500);
19
+ this.logger.write('watching for config updates...');
18
20
  const watcher = Filesystem.watch(Path.resolve(this.app.root, APP_CONFIG_FILENAME), {
19
21
  persistent: true,
20
22
  ignoreInitial: true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@youcan/app",
3
3
  "type": "module",
4
- "version": "1.2.0-beta.2",
4
+ "version": "1.2.0-beta.3",
5
5
  "description": "OCLIF plugin for building apps",
6
6
  "author": "YouCan <contact@youcan.shop> (https://youcan.shop)",
7
7
  "license": "MIT",
@@ -17,7 +17,7 @@
17
17
  "dependencies": {
18
18
  "@oclif/core": "^2.15.0",
19
19
  "dayjs": "^1.11.10",
20
- "@youcan/cli-kit": "1.2.0-beta.2"
20
+ "@youcan/cli-kit": "1.2.0-beta.3"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@oclif/plugin-legacy": "^1.3.0",