-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
75 lines (65 loc) · 2.06 KB
/
Copy path.gitignore
File metadata and controls
75 lines (65 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Dependencies
node_modules/
.pnpm-store/
# Build output
dist/
dist-ssr/
*.local
# Wrangler local dev state (preview-service worker)
.wrangler/
# Vite / Vite+ caches
.vite/
.vite-plus/
vite.config.ts.timestamp-*
*.timestamp-*-*.mjs
*.tsbuildinfo
# Test / coverage
coverage/
test-results/
# Diff artifacts written by `test/diffArtifacts.ts` when an image comparison
# fails - the two images it was looking at, a mask, a magnitude view and the
# numbers (#252). They are a CAPTURE OF A FAILURE, not ground truth: they never
# get committed, and they must never acquire a `test/fixtures/PROVENANCE.json`
# entry, which is why they land here rather than beside the fixtures.
test-output/
# Vitest blob reports. Nothing here uses `--reporter=blob` - the sharded CI path
# deliberately does not, because `vp test --merge-reports` does not merge, it
# re-runs (measured: a 57-file shard's blob came back reporting 114 files). This
# stays ignored anyway because running that reporter by hand drops a ~500 KB
# JSON in the repo root, which `vp check`'s format step would then trip over.
.vitest-reports/
.vitest-attachments/
# Lighthouse CLI report output (--output html|json|csv) - a stray report left
# in the repo root once failed `vp check`'s format step and blocked a deploy
*.report.html
*.report.json
*.report.csv
# Editor / OS
.DS_Store
*.log
logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.idea/
.vscode/*
!.vscode/extensions.json
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Vestigial as of the refs:sync rewrite - nothing populates this any more.
# `factorio-oracle refs docs` reads the API docs out of the installed game
# instead (factorio.app/Contents/doc-html), so an existing ~290 MB copy here is
# now a duplicate and safe to delete. The rule stays only so that deleting it is
# your choice rather than a surprise diff.
/factorioLuaAPI
/perf-result.txt
# superpowers SDD scratch (ledgers, briefs, review packages)
.superpowers/
# Rust build output. The one artifact that IS committed is
# src/noise/wasm/engine.wasm, written by scripts/build-wasm.sh.
target/