@nocobase/devtools 2.1.0-beta.35 → 2.1.0-beta.36

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/common.js +1 -1
  2. package/package.json +6 -6
package/common.js CHANGED
@@ -172,7 +172,7 @@ export default function devDynamicImport(packageName: string): Promise<any> {
172
172
  this.packagesPath,
173
173
  join(dirname(pluginPackageJsonPath), 'src', this.options.clientSourceDir),
174
174
  ).replaceAll(sep, '/');
175
- exportStatement = `export { default } from '${pluginSrcClientPath}';`;
175
+ exportStatement = `export { default } from '${pluginSrcClientPath}';\nexport * from '${pluginSrcClientPath}';`;
176
176
  } else {
177
177
  exportStatement = `export { default } from '${pluginPackageJson.name}/${this.options.clientModuleName}';`;
178
178
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@nocobase/devtools",
3
- "version": "2.1.0-beta.35",
3
+ "version": "2.1.0-beta.36",
4
4
  "description": "",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./src/index.js",
7
7
  "dependencies": {
8
- "@nocobase/build": "2.1.0-beta.35",
9
- "@nocobase/client": "2.1.0-beta.35",
10
- "@nocobase/test": "2.1.0-beta.35",
11
- "@nocobase/utils": "2.1.0-beta.35",
8
+ "@nocobase/build": "2.1.0-beta.36",
9
+ "@nocobase/client": "2.1.0-beta.36",
10
+ "@nocobase/test": "2.1.0-beta.36",
11
+ "@nocobase/utils": "2.1.0-beta.36",
12
12
  "@rsbuild/core": "1.7.3",
13
13
  "@rsbuild/plugin-less": "^1.6.2",
14
14
  "@rsbuild/plugin-node-polyfill": "1.4.4",
@@ -57,5 +57,5 @@
57
57
  "url": "git+https://github.com/nocobase/nocobase.git",
58
58
  "directory": "packages/core/devtools"
59
59
  },
60
- "gitHead": "74310d8b9e9581fcde14b5a93d12b41ddb5bb325"
60
+ "gitHead": "397d45c744f6eb48b3a0cd785c87cbf1257c3513"
61
61
  }