@nocobase/cli 1.0.0-alpha.6 → 1.0.0-alpha.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/util.js +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/cli",
3
- "version": "1.0.0-alpha.6",
3
+ "version": "1.0.0-alpha.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.0.0-alpha.6",
11
+ "@nocobase/app": "1.0.0-alpha.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.6.2"
26
26
  },
27
27
  "devDependencies": {
28
- "@nocobase/devtools": "1.0.0-alpha.6"
28
+ "@nocobase/devtools": "1.0.0-alpha.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": "cbba77fb83a4ee114002234a15d339054b092de8"
35
+ "gitHead": "3c4e978f6fc366c01621c9d625678e91f53f8662"
36
36
  }
package/src/util.js CHANGED
@@ -228,6 +228,9 @@ exports.genTsConfigPaths = function genTsConfigPaths() {
228
228
  paths[`${packageJsonName}/e2e`] = [`${relativePath}/src/e2e`];
229
229
  paths[`${packageJsonName}/web`] = [`${relativePath}/src/web`];
230
230
  }
231
+ if (packageJsonName === '@nocobase/client') {
232
+ paths[`${packageJsonName}/demo-utils`] = [`${relativePath}/src/demo-utils`];
233
+ }
231
234
  if (packageJsonName === '@nocobase/plugin-workflow-test') {
232
235
  paths[`${packageJsonName}/e2e`] = [`${relativePath}/src/e2e`];
233
236
  }