-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
26 lines (24 loc) · 1.09 KB
/
.gitattributes
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
# Files not needed to be distributed in the package.
.gitattributes export-ignore
.github/ export-ignore
package.json export-ignore
# Files to include in the mirror repo, but excluded via gitignore
# Remember to end all directories with `/**` to properly tag every file.
# /src/js/example.min.js production-include
/src/**/*.min.css production-include
/src/**/*.rtl.css production-include
dist/** production-include
# Files to exclude from the mirror repo, but included in the monorepo.
# Remember to end all directories with `/**` to properly tag every file.
.gitignore production-exclude
babel.config* production-exclude
changelog/** production-exclude
phpunit.xml.dist production-exclude
.phpcs.dir.xml production-exclude
tests/** production-exclude
tools/** production-exclude
.phpcsignore production-exclude
/src/dashboard/**/*.js production-exclude
/src/dashboard/**/*.scss production-exclude
/src/blocks/**/*.js production-exclude
/src/blocks/**/*.scss production-exclude