Files
netbird-docs/.gitignore
Jack Carter e8c605047a build: track package-lock.json for reproducible installs (#838)
Stop gitignoring the lockfile and commit a freshly regenerated one so CI and Docker builds install a pinned dependency tree instead of re-resolving `^` ranges on every run. Fresh resolution matches the versions already building (no version changes). Document the convention in CLAUDE.md. Enables `npm ci` as a follow-up.
2026-07-09 11:19:59 +02:00

46 lines
807 B
Plaintext

# Dependencies
/node_modules
# Production
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
/.next/
/yarn.lock
/generator/openapi/
/generator/openapi.yml
/generator/expandOpenAPIRef
/generator/tsconfig.tsbuildinfo
# LLM documentation (generated)
/public/llms/
/public/llms.txt
# Sitemap (generated by scripts/generate-sitemap.mjs)
/public/sitemap.xml
# Edit on GitHub index routes (generated by scripts/generate-github-routes.mjs)
/src/lib/edit-on-github-routes.js
# Last updated dates per route (generated by scripts/generate-last-updated.mjs)
/src/lib/last-updated-routes.mjs
# Playwright MCP run artifacts (snapshots, console logs)
/.playwright-mcp/