@nocobase/cli 1.5.0-beta.6 → 1.5.0-beta.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/cli",
3
- "version": "1.5.0-beta.6",
3
+ "version": "1.5.0-beta.8",
4
4
  "description": "",
5
5
  "license": "AGPL-3.0",
6
6
  "main": "./src/index.js",
@@ -8,7 +8,7 @@
8
8
  "nocobase": "./bin/index.js"
9
9
  },
10
10
  "dependencies": {
11
- "@nocobase/app": "1.5.0-beta.6",
11
+ "@nocobase/app": "1.5.0-beta.8",
12
12
  "@types/fs-extra": "^11.0.1",
13
13
  "@umijs/utils": "3.5.20",
14
14
  "chalk": "^4.1.1",
@@ -25,12 +25,12 @@
25
25
  "tsx": "^4.19.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@nocobase/devtools": "1.5.0-beta.6"
28
+ "@nocobase/devtools": "1.5.0-beta.8"
29
29
  },
30
30
  "repository": {
31
31
  "type": "git",
32
32
  "url": "git+https://github.com/nocobase/nocobase.git",
33
33
  "directory": "packages/core/cli"
34
34
  },
35
- "gitHead": "bc2521a48eb8f31af9a6c6fb5daefe218bf04798"
35
+ "gitHead": "eb7db7301ac5eed305e73540884611832bc761f6"
36
36
  }
@@ -89,16 +89,13 @@ module.exports = (cli) => {
89
89
 
90
90
  watcher
91
91
  .on('ready', () => {
92
- console.log('Initial scan complete.');
93
92
  isReady = true;
94
93
  })
95
94
  .on('addDir', async (pathname) => {
96
- console.log('addDir....', isReady);
97
95
  if (!isReady) return;
98
96
  restartClient();
99
97
  })
100
98
  .on('unlinkDir', async (pathname) => {
101
- console.log('unlinkDir....', isReady);
102
99
  if (!isReady) return;
103
100
  restartClient();
104
101
  });
@@ -58,16 +58,13 @@ module.exports = (cli) => {
58
58
 
59
59
  watcher
60
60
  .on('ready', () => {
61
- console.log('Initial scan complete.');
62
61
  isReady = true;
63
62
  })
64
63
  .on('addDir', async (pathname) => {
65
- console.log('addDir....', isReady);
66
64
  if (!isReady) return;
67
65
  restart();
68
66
  })
69
67
  .on('unlinkDir', async (pathname) => {
70
- console.log('unlinkDir....', isReady);
71
68
  if (!isReady) return;
72
69
  restart();
73
70
  });