-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
22 lines (20 loc) · 880 Bytes
/
.gitattributes
File metadata and controls
22 lines (20 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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.
build/** 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
changelog/** production-exclude
.phpcs.dir.xml production-exclude
tests/** production-exclude
/_inc/** production-exclude
/jest-globals.js production-exclude
/jest.config.js production-exclude
/babel.config.js production-exclude
/package.json production-exclude
/postcss.config.js production-exclude
/webpack.config.js production-exclude