From 807e0ea4cb4c1ead7c807826e5f84038498dfdaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20St=C3=B6hr?= Date: Thu, 8 Dec 2022 19:06:36 +0100 Subject: [PATCH] build: add assets/src-directory to .gitattributes --- src/Autocomplete/.gitattributes | 2 ++ src/Autocomplete/CHANGELOG.md | 4 ++++ src/Chartjs/.gitattributes | 1 + src/Chartjs/CHANGELOG.md | 4 ++++ src/Cropperjs/.gitattributes | 1 + src/Cropperjs/CHANGELOG.md | 4 ++++ src/Dropzone/.gitattributes | 1 + src/Dropzone/CHANGELOG.md | 4 ++++ src/LazyImage/.gitattributes | 1 + src/LazyImage/CHANGELOG.md | 4 ++++ src/LiveComponent/.gitattributes | 2 ++ src/LiveComponent/CHANGELOG.md | 2 ++ src/Notify/.gitattributes | 1 + src/Notify/CHANGELOG.md | 4 ++++ src/React/.gitattributes | 1 + src/React/CHANGELOG.md | 4 ++++ src/Swup/.gitattributes | 1 + src/Swup/CHANGELOG.md | 4 ++++ src/Turbo/.gitattributes | 1 + src/Turbo/CHANGELOG.md | 4 ++++ src/TwigComponent/CHANGELOG.md | 4 ++++ src/Typed/.gitattributes | 1 + src/Typed/CHANGELOG.md | 4 ++++ src/Vue/.gitattributes | 1 + src/Vue/CHANGELOG.md | 4 ++++ 25 files changed, 64 insertions(+) diff --git a/src/Autocomplete/.gitattributes b/src/Autocomplete/.gitattributes index fb686a9c047..995d88d46f5 100644 --- a/src/Autocomplete/.gitattributes +++ b/src/Autocomplete/.gitattributes @@ -1,7 +1,9 @@ /.gitattributes export-ignore /.gitignore export-ignore /.symfony.bundle.yaml export-ignore +/phpunit.xml.dist export-ignore /assets/.gitignore export-ignore +/assets/src export-ignore /assets/jest.config.js export-ignore /assets/test export-ignore /tests export-ignore diff --git a/src/Autocomplete/CHANGELOG.md b/src/Autocomplete/CHANGELOG.md index fe58c2d3860..480916ed74a 100644 --- a/src/Autocomplete/CHANGELOG.md +++ b/src/Autocomplete/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK]: The path to `routes.php` changed and you should update your diff --git a/src/Chartjs/.gitattributes b/src/Chartjs/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/Chartjs/.gitattributes +++ b/src/Chartjs/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/Chartjs/CHANGELOG.md b/src/Chartjs/CHANGELOG.md index 76ed3d07bc5..aafa4aad040 100644 --- a/src/Chartjs/CHANGELOG.md +++ b/src/Chartjs/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/Cropperjs/.gitattributes b/src/Cropperjs/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/Cropperjs/.gitattributes +++ b/src/Cropperjs/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/Cropperjs/CHANGELOG.md b/src/Cropperjs/CHANGELOG.md index 26f74ad4673..2739d204ed5 100644 --- a/src/Cropperjs/CHANGELOG.md +++ b/src/Cropperjs/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/Dropzone/.gitattributes b/src/Dropzone/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/Dropzone/.gitattributes +++ b/src/Dropzone/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/Dropzone/CHANGELOG.md b/src/Dropzone/CHANGELOG.md index ce80540c8b7..cae75b42a9b 100644 --- a/src/Dropzone/CHANGELOG.md +++ b/src/Dropzone/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/LazyImage/.gitattributes b/src/LazyImage/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/LazyImage/.gitattributes +++ b/src/LazyImage/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/LazyImage/CHANGELOG.md b/src/LazyImage/CHANGELOG.md index 36ff266d119..270647d9a29 100644 --- a/src/LazyImage/CHANGELOG.md +++ b/src/LazyImage/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/LiveComponent/.gitattributes b/src/LiveComponent/.gitattributes index ad88a51488b..e15d52606d2 100644 --- a/src/LiveComponent/.gitattributes +++ b/src/LiveComponent/.gitattributes @@ -1,8 +1,10 @@ /.gitattributes export-ignore /.gitignore export-ignore /.symfony.bundle.yaml export-ignore +/phpunit.xml.dist export-ignore /assets/.gitignore export-ignore /assets/jest.config.js export-ignore +/assets/src export-ignore /assets/test export-ignore /phpunit.xml.dist export-ignore /tests export-ignore diff --git a/src/LiveComponent/CHANGELOG.md b/src/LiveComponent/CHANGELOG.md index c6455416497..f2c1e775f8d 100644 --- a/src/LiveComponent/CHANGELOG.md +++ b/src/LiveComponent/CHANGELOG.md @@ -5,6 +5,8 @@ - Added a new `route` parameter to `AsLiveComponent`, which allows to choose another route for Ajax calls. +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK]: The path to `live_component.xml` changed _and_ the import now diff --git a/src/Notify/.gitattributes b/src/Notify/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/Notify/.gitattributes +++ b/src/Notify/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/Notify/CHANGELOG.md b/src/Notify/CHANGELOG.md index 93b81f7e0ac..34ec87b182f 100644 --- a/src/Notify/CHANGELOG.md +++ b/src/Notify/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/React/.gitattributes b/src/React/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/React/.gitattributes +++ b/src/React/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/React/CHANGELOG.md b/src/React/CHANGELOG.md index c7eafd98514..e3ffe25daff 100644 --- a/src/React/CHANGELOG.md +++ b/src/React/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/Swup/.gitattributes b/src/Swup/.gitattributes index 9c067b5fdac..d032d82cde7 100644 --- a/src/Swup/.gitattributes +++ b/src/Swup/.gitattributes @@ -1,5 +1,6 @@ /.gitattributes export-ignore /.gitignore export-ignore /.symfony.bundle.yaml export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore diff --git a/src/Swup/CHANGELOG.md b/src/Swup/CHANGELOG.md index dbb8af923fc..a53bc504317 100644 --- a/src/Swup/CHANGELOG.md +++ b/src/Swup/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/Turbo/.gitattributes b/src/Turbo/.gitattributes index 67f56617629..3f8be3735a9 100644 --- a/src/Turbo/.gitattributes +++ b/src/Turbo/.gitattributes @@ -3,6 +3,7 @@ /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore /phpstan.neon.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/Turbo/CHANGELOG.md b/src/Turbo/CHANGELOG.md index b87468c2d5f..b45d4504917 100644 --- a/src/Turbo/CHANGELOG.md +++ b/src/Turbo/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.1 - The `symfony/ux-turbo-mercure` package was abandoned and moved into this package. diff --git a/src/TwigComponent/CHANGELOG.md b/src/TwigComponent/CHANGELOG.md index 07d7d1d5194..7e3b1d1ade8 100644 --- a/src/TwigComponent/CHANGELOG.md +++ b/src/TwigComponent/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.5 - [BC BREAK] The `PreRenderEvent` namespace was changed from `Symfony\UX\TwigComponent\EventListener` diff --git a/src/Typed/.gitattributes b/src/Typed/.gitattributes index 9c067b5fdac..d032d82cde7 100644 --- a/src/Typed/.gitattributes +++ b/src/Typed/.gitattributes @@ -1,5 +1,6 @@ /.gitattributes export-ignore /.gitignore export-ignore /.symfony.bundle.yaml export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore diff --git a/src/Typed/CHANGELOG.md b/src/Typed/CHANGELOG.md index a410508a4d7..ff0152a2a60 100644 --- a/src/Typed/CHANGELOG.md +++ b/src/Typed/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make diff --git a/src/Vue/.gitattributes b/src/Vue/.gitattributes index ae7ca28acab..2a135e9fd81 100644 --- a/src/Vue/.gitattributes +++ b/src/Vue/.gitattributes @@ -2,6 +2,7 @@ /.gitignore export-ignore /.symfony.bundle.yaml export-ignore /phpunit.xml.dist export-ignore +/assets/src export-ignore /assets/test export-ignore /assets/jest.config.js export-ignore /tests export-ignore diff --git a/src/Vue/CHANGELOG.md b/src/Vue/CHANGELOG.md index 6dd801659fe..73c4ab00d79 100644 --- a/src/Vue/CHANGELOG.md +++ b/src/Vue/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Add `assets/src` to `.gitattributes` to exclude them from the installation + ## 2.6.0 - [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make