@nocobase/cli 1.5.0-beta.2 → 1.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/cli",
3
- "version": "1.5.0-beta.2",
3
+ "version": "1.5.0-beta.3",
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.2",
11
+ "@nocobase/app": "1.5.0-beta.3",
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.2"
28
+ "@nocobase/devtools": "1.5.0-beta.3"
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": "8a9c29fdac5c6295dcc7abf00c3fa81bd9e01a36"
35
+ "gitHead": "81afcf4affdb652faf4636e6d9351828ce8906be"
36
36
  }
@@ -30,10 +30,10 @@ module.exports = (cli) => {
30
30
  cli
31
31
  .command('dev')
32
32
  .option('-p, --port [port]')
33
- .option('--client')
34
- .option('--server')
33
+ .option('-c, --client')
34
+ .option('-s, --server')
35
35
  .option('--db-sync')
36
- .option('--inspect [port]')
36
+ .option('-i, --inspect [port]')
37
37
  .allowUnknownOption()
38
38
  .action(async (opts) => {
39
39
  let subprocess;
package/src/util.js CHANGED
@@ -337,6 +337,7 @@ exports.initEnv = function initEnv() {
337
337
  LOCAL_STORAGE_DEST: 'storage/uploads',
338
338
  PLUGIN_STORAGE_PATH: resolve(process.cwd(), 'storage/plugins'),
339
339
  MFSU_AD: 'none',
340
+ MAKO_AD: 'none',
340
341
  WS_PATH: '/ws',
341
342
  SOCKET_PATH: 'storage/gateway.sock',
342
343
  NODE_MODULES_PATH: resolve(process.cwd(), 'node_modules'),