@nocobase/build 2.1.0-alpha.7 → 2.1.0-alpha.9
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/lib/buildPlugin.js +13 -1
- package/package.json +2 -2
package/lib/buildPlugin.js
CHANGED
|
@@ -141,7 +141,19 @@ const external = [
|
|
|
141
141
|
"ahooks",
|
|
142
142
|
"lodash",
|
|
143
143
|
"china-division",
|
|
144
|
-
"file-saver"
|
|
144
|
+
"file-saver",
|
|
145
|
+
// langChain
|
|
146
|
+
"langchain",
|
|
147
|
+
"@langchain/core",
|
|
148
|
+
"@langchain/classic",
|
|
149
|
+
"@langchain/langgraph",
|
|
150
|
+
"@langchain/langgraph-checkpoint",
|
|
151
|
+
"@langchain/community",
|
|
152
|
+
"@langchain/openai",
|
|
153
|
+
"@langchain/anthropic",
|
|
154
|
+
"@langchain/google-genai",
|
|
155
|
+
"@langchain/deepseek",
|
|
156
|
+
"@langchain/ollama"
|
|
145
157
|
];
|
|
146
158
|
const pluginPrefix = (process.env.PLUGIN_PACKAGE_PREFIX || "@nocobase/plugin-,@nocobase/preset-,@nocobase/plugin-pro-").split(",");
|
|
147
159
|
const target_dir = "dist";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nocobase/build",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.9",
|
|
4
4
|
"description": "Library build tool based on rollup.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"build": "tsup",
|
|
52
52
|
"build:watch": "tsup --watch"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "f9c6c53772bd5002fa419188d15ab227224f1962"
|
|
55
55
|
}
|