Skip to content

Commit 3200460

Browse files
committed
bug #661 Only ignore .ts files: include other files (e.g. css files) (weaverryan)
This PR was merged into the 2.x branch. Discussion ---------- Only ignore .ts files: include other files (e.g. css files) | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Tickets | Fix #657 Fix #658 | License | MIT An oversight in 2.7.0. Sometimes we put the `.css` files inside the `src/` directory. And so, those must be included in the package. The intention was just to avoid including the `.ts` files. Cheers! Commits ------- fba61cb Only ignore .ts files: include other files (e.g. css files)
2 parents 7052537 + fba61cb commit 3200460

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

src/Autocomplete/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
55
/assets/.gitignore export-ignore
6-
/assets/src export-ignore
6+
/assets/src/*.ts export-ignore
77
/assets/jest.config.js export-ignore
88
/assets/test export-ignore
99
/tests export-ignore

src/Chartjs/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
5-
/assets/src export-ignore
5+
/assets/src/*.ts export-ignore
66
/assets/test export-ignore
77
/assets/jest.config.js export-ignore
88
/tests export-ignore

src/Cropperjs/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
5-
/assets/src export-ignore
5+
/assets/src/*.ts export-ignore
66
/assets/test export-ignore
77
/assets/jest.config.js export-ignore
88
/tests export-ignore

src/Dropzone/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
5-
/assets/src export-ignore
5+
/assets/src/*.ts export-ignore
66
/assets/test export-ignore
77
/assets/jest.config.js export-ignore
88
/tests export-ignore

src/LazyImage/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
5-
/assets/src export-ignore
5+
/assets/src/*.ts export-ignore
66
/assets/test export-ignore
77
/assets/jest.config.js export-ignore
88
/tests export-ignore

src/LiveComponent/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/phpunit.xml.dist export-ignore
55
/assets/.gitignore export-ignore
66
/assets/jest.config.js export-ignore
7-
/assets/src export-ignore
7+
/assets/src/*.ts export-ignore
88
/assets/test export-ignore
99
/phpunit.xml.dist export-ignore
1010
/tests export-ignore

src/Notify/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
5-
/assets/src export-ignore
5+
/assets/src/*.ts export-ignore
66
/assets/test export-ignore
77
/assets/jest.config.js export-ignore
88
/tests export-ignore

src/React/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
5-
/assets/src export-ignore
5+
/assets/src/*.ts export-ignore
66
/assets/test export-ignore
77
/assets/jest.config.js export-ignore
88
/tests export-ignore

src/Swup/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/.gitattributes export-ignore
22
/.gitignore export-ignore
33
/.symfony.bundle.yaml export-ignore
4-
/assets/src export-ignore
4+
/assets/src/*.ts export-ignore
55
/assets/test export-ignore
66
/assets/jest.config.js export-ignore

src/Turbo/.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/.symfony.bundle.yaml export-ignore
44
/phpunit.xml.dist export-ignore
55
/phpstan.neon.dist export-ignore
6-
/assets/src export-ignore
6+
/assets/src/*.ts export-ignore
77
/assets/test export-ignore
88
/assets/jest.config.js export-ignore
99
/tests export-ignore

0 commit comments

Comments
 (0)