Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: .gitignore fix for docs_src #673

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,36 +24,35 @@ robyn.env

# new docs dependencies
# dependencies
new_docs/node_modules
new_docs/.pnp
new_docs/.pnp.js
docs_src/node_modules
docs_src/.pnp
docs_src/.pnp.js

# testing
new_docs/coverage
docs_src/coverage

# next.js
new_docs/.next/
new_docs/out/
docs_src/.next/
docs_src/out/

# production
new_docs/build
docs_src/build

# misc
new_docs/.DS_Store
new_docs/*.pem
docs_src/.DS_Store
docs_src/*.pem

# debug
new_docs/npm-debug.log*
new_docs/yarn-debug.log*
new_docs/yarn-error.log*
new_docs/.pnpm-debug.log*
docs_src/npm-debug.log*
docs_src/yarn-debug.log*
docs_src/yarn-error.log*
docs_src/.pnpm-debug.log*

# local env files
new_docs/.env*.local
docs_src/.env*.local

# vercel
new_docs/.vercel
docs_src/.vercel

# generated files
new_docs/public/rss/

docs_src/public/rss/
Loading