forked from langchain-ai/langchainjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request langchain-ai#2008 from jacoblee93/docs_refactor
Docs refactor
- Loading branch information
Showing
500 changed files
with
27,402 additions
and
18,905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ lib/ | |
.eslintcache | ||
.env | ||
yarn-error.log | ||
docs/_dist/ | ||
|
||
.yarn/* | ||
!.yarn/patches | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
# Dependencies | ||
/node_modules | ||
|
||
# Production | ||
/build | ||
|
||
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
docs/api | ||
|
||
# Misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# ESLint | ||
.eslintcache | ||
docs/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
set -o xtrace | ||
|
||
SCRIPT_DIR="$(cd "$(dirname "$0")"; pwd)" | ||
cd "${SCRIPT_DIR}" | ||
|
||
rm -rf _dist/ | ||
mkdir -p _dist/docs_skeleton | ||
cp -r {docs_skeleton,snippets} _dist | ||
cp -r extras/* _dist/docs_skeleton/docs | ||
cd _dist/docs_skeleton | ||
yarn install | ||
yarn build |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.