diff options
author | 2025-06-05 14:25:23 +0000 | |
---|---|---|
committer | 2025-06-05 14:25:23 +0000 | |
commit | e586d7d704d475afe3373a1de6ae20d504f79d6d (patch) | |
tree | 7e3fa24807cebd48a86bd40f866d792181191ee9 /.gitignore | |
download | astro-e586d7d704d475afe3373a1de6ae20d504f79d6d.tar.gz astro-e586d7d704d475afe3373a1de6ae20d504f79d6d.tar.zst astro-e586d7d704d475afe3373a1de6ae20d504f79d6d.zip |
Sync from a8e1c0a7402940e0fc5beef669522b315052df1blatest
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..8626a30a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +node_modules/ +dist/ +*.tsbuildinfo +.DS_Store +.vercel +.netlify +_site/ +.astro/ +scripts/smoke/*-main/ +scripts/memory/project/src/pages/ +benchmark/projects/ +benchmark/results/ +test-results/ +*.log +package-lock.json +.turbo/ +.eslintcache +.pnpm-store + +# do not commit .env files or any files that end with `.env` +*.env + +packages/astro/src/**/*.prebuilt.ts +packages/astro/src/**/*.prebuilt-dev.ts +packages/astro/test/units/_temp-fixtures/* +!packages/astro/test/units/_temp-fixtures/package.json +packages/integrations/**/.netlify/ + +# exclude IntelliJ/WebStorm stuff +.idea + +# ignore content collection generated files +packages/**/test/**/fixtures/**/.astro/ +packages/**/test/**/fixtures/**/env.d.ts +packages/**/e2e/**/fixtures/**/.astro/ +packages/**/e2e/**/fixtures/**/env.d.ts +examples/**/.astro/ +examples/**/env.d.ts + +# make it easy for people to add project-specific Astro settings that they don't +# want to share with others (see +# https://github.com/withastro/astro/pull/11759#discussion_r1721444711) +*.code-workspace |