-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
72 lines (66 loc) · 2.98 KB
/
Copy path.gitattributes
File metadata and controls
72 lines (66 loc) · 2.98 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
dist/* linguist-generated
legacy/* linguist-generated
# Exclude dev files from Composer dist archives (--prefer-dist)
# Our personal dev/test env configs must never ship: they hard-set our domain,
# datadir and `auth.enable=false`, so a customer who ever set APP_ENV=dev/test
# would load them. local.preview.php / local.stacks.php DO ship (Stacks needs
# them) and contain no such overrides.
/config/local.dev.php export-ignore
/config/local.test.php export-ignore
/.claude export-ignore
/.github export-ignore
/.vscode export-ignore
/bin export-ignore
/build export-ignore
/cache export-ignore
/css export-ignore
/demo export-ignore
/dist export-ignore
/docs export-ignore
/javascript export-ignore
/logs export-ignore
/node_modules export-ignore
/tcms-data export-ignore
/tests export-ignore
/tmp export-ignore
/vendor-locales export-ignore
.editorconfig export-ignore
.env export-ignore
.eslintrc.json export-ignore
.gitignore export-ignore
.gitattributes export-ignore
.gitignore-dist export-ignore
.gitmodules export-ignore
.php-cs-fixer.php export-ignore
.phpunit.result.cache export-ignore
checksums.txt export-ignore
code-report.txt export-ignore
CLAUDE.md export-ignore
esbuild.config.js export-ignore
package.json export-ignore
phpcbf.xml export-ignore
phpcs.xml export-ignore
phpdoc.xml export-ignore
phpDocumentor.phar export-ignore
phpmd.xml export-ignore
phpstan.neon export-ignore
phpunit.xml export-ignore
rector.php export-ignore
total-cms-context.md export-ignore
yarn.lock export-ignore
# Source maps are built for Sentry upload, not for shipping. Keep the 12MB of
# *.map out of the dist so customer sites don't serve our unminified source.
*.map export-ignore
# The integrity manifest is a generated, release-only artifact (base64 blob).
# `binary` keeps local diffs/merges clean; `linguist-generated` collapses it
# in GitHub PRs and excludes it from language stats. It still ships.
/resources/bundle binary linguist-generated
# Built CSS/JS are generated release artifacts. `linguist-generated` keeps them
# out of PR diffs and language stats; `binary` stops unreadable minified diffs
# and line-level merge conflicts on the release "Build assets" commit. They ship.
/public/assets/** binary linguist-generated
# The docs search index is generated (bin/build-docs-index.php) and all-or-nothing
# — regenerated wholesale, never hand-edited. `binary` silences its diffs and
# avoids line-level merge conflicts (regenerate on conflict); `linguist-generated`
# collapses it in GitHub PRs. It still ships (fresh installs need working search).
/resources/docs/search-index.json binary linguist-generated