@nocobase/app 0.16.0-alpha.3 → 0.16.0-alpha.4
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/client/.umirc.ts
CHANGED
|
@@ -9,7 +9,7 @@ process.env.DID_YOU_KNOW = 'none';
|
|
|
9
9
|
|
|
10
10
|
const pluginPrefix = (process.env.PLUGIN_PACKAGE_PREFIX || '').split(',').filter((item) => !item.includes('preset')); // 因为现在 preset 是直接引入的,所以不能忽略,如果以后 preset 也是动态插件的形式引入,那么这里可以去掉
|
|
11
11
|
|
|
12
|
-
const pluginDirs = (process.env.PLUGIN_PATH || 'packages/plugins/,packages/samples/')
|
|
12
|
+
const pluginDirs = (process.env.PLUGIN_PATH || 'packages/plugins/,packages/samples/,packages/pro-plugins/')
|
|
13
13
|
.split(',').map(item => path.join(__dirname, '..', '..', '..', '..', item));
|
|
14
14
|
|
|
15
15
|
const outputPluginPath = path.join(__dirname, 'src', '.plugins');
|