Skip to content

Commit

Permalink
fix(scripts): add missing shebang in bin scripts (#7173)
Browse files Browse the repository at this point in the history
  • Loading branch information
dqbd authored Nov 8, 2024
2 parents 6d025f5 + 45dd3cf commit a0a2728
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions libs/langchain-scripts/bin/build.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#!/usr/bin/env node
import "../dist/build/index.js";
1 change: 1 addition & 0 deletions libs/langchain-scripts/bin/filter_spam_comment.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#!/usr/bin/env node
import "../dist/filter_spam_comment.js";
1 change: 1 addition & 0 deletions libs/langchain-scripts/bin/validate_notebook.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#!/usr/bin/env node
import "../dist/notebooks/index.js";
2 changes: 1 addition & 1 deletion libs/langchain-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@langchain/scripts",
"version": "0.1.3",
"version": "0.1.4",
"description": "Shared scripts for LangChain.js",
"type": "module",
"engines": {
Expand Down

0 comments on commit a0a2728

Please sign in to comment.