Skip to content

Conversation

NiranjanKumar001
Copy link

  • Fix Windows build compatibility in @langchain/scripts package
    • Replace Unix-specific mkdir -p and mv commands with Node.js equivalents
    • Replace rm -rf with cross-platform rimraf
  • Fix typo: 'Langhain' -> 'LangChain' in README files
  • Fix typos in net-mocks README: 'occured' -> 'occurred', 'its the' -> 'it's the'"

- Fix Windows build compatibility in @langchain/scripts package
  - Replace Unix-specific mkdir -p and mv commands with Node.js equivalents
  - Replace rm -rf with cross-platform rimraf
- Fix typo: 'Langhain' -> 'LangChain' in README files
- Fix typos in net-mocks README: 'occured' -> 'occurred', 'its the' -> 'it's the'
Copy link

changeset-bot bot commented Sep 30, 2025

⚠️ No Changeset found

Latest commit: cf58234

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Sep 30, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
langchainjs-docs Ready Ready Preview Comment Oct 2, 2025 5:55pm
1 Skipped Deployment
Project Deployment Preview Comments Updated (UTC)
langchainjs-api-refs Ignored Ignored Oct 2, 2025 5:55pm

"build": "yarn clean && yarn turbo:command build:internal --filter=@langchain/scripts",
"build:internal": "tsc --project ./tsconfig.build.json && yarn move:artifacts && yarn build:generated",
"move:artifacts": "rimraf dist && mkdir -p dist && mv dist_build/* dist/",
"move:artifacts": "rimraf dist && node -e \"const fs = require('fs'); fs.mkdirSync('dist', {recursive: true}); fs.cpSync('dist_build', 'dist', {recursive: true});\"",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we are using rimraf , let's be consistent and also use mkdirp from NPM for this.

Copy link

vercel bot commented Oct 2, 2025

@NiranjanKumar001 is attempting to deploy a commit to the LangChain Team on Vercel.

A member of the Team first needs to authorize it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants