File tree Expand file tree Collapse file tree 9 files changed +1516
-83
lines changed Expand file tree Collapse file tree 9 files changed +1516
-83
lines changed Original file line number Diff line number Diff line change 54
54
cd src/LazyImage
55
55
composer update --prefer-lowest --prefer-dist --no-interaction --no-ansi --no-progress
56
56
php vendor/bin/simple-phpunit
57
+ - name : TwigComponent
58
+ run : |
59
+ cd src/TwigComponent
60
+ composer update --prefer-lowest --prefer-dist --no-interaction --no-ansi --no-progress
61
+ php vendor/bin/simple-phpunit
62
+ - name : LiveComponent
63
+ run : |
64
+ cd src/LiveComponent
65
+ composer update --prefer-lowest --prefer-dist --no-interaction --no-ansi --no-progress
66
+ php vendor/bin/simple-phpunit
57
67
58
68
tests-php-high-deps :
59
69
runs-on : ubuntu-latest
@@ -86,10 +96,30 @@ jobs:
86
96
composer config platform.php 7.4.99
87
97
composer update --prefer-dist --no-interaction --no-ansi --no-progress
88
98
php vendor/bin/simple-phpunit
99
+ - name : TwigComponent
100
+ run : |
101
+ cd src/TwigComponent
102
+ composer config platform.php 7.4.99
103
+ composer update --prefer-dist --no-interaction --no-ansi --no-progress
104
+ php vendor/bin/simple-phpunit
105
+ - name : LiveComponent
106
+ run : |
107
+ cd src/LiveComponent
108
+ composer config platform.php 7.4.99
109
+ composer update --prefer-dist --no-interaction --no-ansi --no-progress
110
+ php vendor/bin/simple-phpunit
89
111
90
112
tests-js :
91
113
runs-on : ubuntu-latest
92
114
steps :
93
115
- uses : actions/checkout@master
94
116
- run : yarn
95
117
- run : yarn test
118
+
119
+ - name : Verify dist files are up to date
120
+ run : |
121
+ if [ -z "$(git status --porcelain)" ]; then
122
+ exit 0
123
+ else
124
+ exit 1
125
+ fi
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ integrating it into [Webpack Encore](https://github.com/symfony/webpack-encore).
34
34
Improve image loading performances through lazy-loading and data-uri thumbnails
35
35
- [ UX Swup] ( https://github.com/symfony/ux-swup ) :
36
36
[ Swup] ( https://swup.js.org/ ) page transition library integration for Symfony
37
+ - [ Twig Component] ( https://github.com/symfony/ux-twig-component ) :
38
+ A system to build reusable "components" with Twig
39
+ - [ Live Component] ( https://github.com/symfony/ux-live-component ) :
40
+ Gives Twig Components a URL and a JavaScript library to automatically re-render via Ajax as your user interacts with it
37
41
38
42
## Stimulus Tools around the World
39
43
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
3
"workspaces" : [
4
- " src/**/Resources/assets"
4
+ " src/**/Resources/assets" ,
5
+ " src/**/assets"
5
6
],
6
7
"scripts" : {
7
8
"build" : " yarn workspaces run build" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments