@nocobase/cli 1.8.0-beta.1 → 1.8.0-beta.10

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/package.json +4 -4
  2. package/src/util.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/cli",
3
- "version": "1.8.0-beta.1",
3
+ "version": "1.8.0-beta.10",
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.8.0-beta.1",
11
+ "@nocobase/app": "1.8.0-beta.10",
12
12
  "@types/fs-extra": "^11.0.1",
13
13
  "@umijs/utils": "3.5.20",
14
14
  "chalk": "^4.1.1",
@@ -26,12 +26,12 @@
26
26
  "tsx": "^4.19.0"
27
27
  },
28
28
  "devDependencies": {
29
- "@nocobase/devtools": "1.8.0-beta.1"
29
+ "@nocobase/devtools": "1.8.0-beta.10"
30
30
  },
31
31
  "repository": {
32
32
  "type": "git",
33
33
  "url": "git+https://github.com/nocobase/nocobase.git",
34
34
  "directory": "packages/core/cli"
35
35
  },
36
- "gitHead": "103935669123174f2942247202e3d9ff15f0d4ed"
36
+ "gitHead": "09fe854edfc44f45422fa983093dd34694416c5a"
37
37
  }
package/src/util.js CHANGED
@@ -114,7 +114,7 @@ exports.postCheck = async (opts) => {
114
114
  const port = opts.port || process.env.APP_PORT;
115
115
  const result = await exports.isPortReachable(port);
116
116
  if (result) {
117
- console.error(chalk.red(`post already in use ${port}`));
117
+ console.error(chalk.red(`Port ${port} already in use`));
118
118
  process.exit(1);
119
119
  }
120
120
  };