@nocobase/build 2.1.0-beta.7 → 2.1.0-beta.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.
Files changed (2) hide show
  1. package/lib/buildPlugin.js +13 -1
  2. package/package.json +2 -2
@@ -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-beta.7",
3
+ "version": "2.1.0-beta.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": "da7dfef2b6d6854988a56119463c8c38e3221e79"
54
+ "gitHead": "c3a2875e4cbbb43b1f2361e6f9f5f84a7d3f3c3c"
55
55
  }