We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 888ccca commit d53762eCopy full SHA for d53762e
langchain-js/run.sh
@@ -26,16 +26,18 @@ setup_node_and_yarn() {
26
export PATH
27
export npm_config_prefix
28
29
- npm install --global yarn
+ npm install -g pnpm@latest-10
30
+ npm install --global corepack --force
31
+ corepack enable
32
}
33
34
setup_langchain_integration() {
- cd libs/langchain-mongodb
35
+ cd libs/providers/langchain-mongodb
36
- yarn install
- yarn build
37
+ pnpm install
38
+ pnpm build
39
- yarn add --dev jest-junit
40
+ pnpm add --save-dev jest-junit
41
export JEST_JUNIT_OUTPUT_NAME=results.xml
42
# Trim trailing slashes since lanchainjs is doing string manipulationn, not
43
# using the URI class.
0 commit comments