Skip to content

Commit 02d661b

Browse files
committed
minor #1062 [Site] Using symfonycasts/sass-bundle for sass processing (weaverryan)
This PR was squashed before being merged into the 2.x branch. Discussion ---------- [Site] Using symfonycasts/sass-bundle for sass processing | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Tickets | None | License | MIT Hi! https://github.com/SymfonyCasts/sass-bundle allows us to build the Sass with just a single command - and the built file no longer needs to be committed 🎆 Cheers! Commits ------- fb83402 [Site] Using symfonycasts/sass-bundle for sass processing
2 parents ad476bb + fb83402 commit 02d661b

File tree

11 files changed

+133
-12676
lines changed

11 files changed

+133
-12676
lines changed

.github/workflows/ux.symfony.com.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,8 @@ jobs:
2424
with:
2525
working-directory: ux.symfony.com
2626

27+
- name: Build Sass assets
28+
run: php bin/console sass:build
29+
2730
- name: Tests
2831
run: vendor/bin/phpunit

ux.symfony.com/.platform.app.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ hooks:
4949
5050
(>&2 symfony-build)
5151
52+
php bin/console sass:build
5253
php bin/console asset-map:compile
5354
5455
deploy: |

ux.symfony.com/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ Source code for [ux.symfony.com](https://ux.symfony.com).
2828
symfony server:start -d
2929
```
3030

31+
6. Compile the Sass files:
32+
```bash
33+
php bin/console sass:build --watch
34+
```
35+
3136
### Running the Test Suite
3237

3338
```bash

0 commit comments

Comments
 (0)