Skip to content

Commit

Permalink
Add more memory to linter (#2934)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 authored Oct 16, 2023
1 parent 51441b5 commit 5f53963
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion langchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@
"build:esm": "tsc --outDir dist/ && rimraf dist/tests dist/**/tests",
"build:cjs": "tsc --outDir dist-cjs/ -p tsconfig.cjs.json && node scripts/move-cjs-to-dist.js && rimraf dist-cjs",
"build:watch": "node scripts/create-entrypoints.js && tsc --outDir dist/ --watch",
"lint": "eslint src && dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
"lint": "NODE_OPTIONS=--max-old-space-size=4096 eslint src && dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
"lint:fix": "yarn lint --fix",
"precommit": "lint-staged",
"clean": "rimraf dist/ && node scripts/create-entrypoints.js pre",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"build": "turbo run build --filter=\"!docs_skeleton\" --filter=\"!test-exports-*\"",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint --filter=\"!docs_skeleton\"",
"lint": "turbo run lint --filter=\"!docs_skeleton\" --concurrency 1",
"lint:fix": "yarn lint -- --fix",
"test": "yarn test:unit && yarn workspace langchain build && yarn test:exports:docker",
"test:unit": "turbo run test --filter langchain",
Expand Down

0 comments on commit 5f53963

Please sign in to comment.