Skip to content

Commit b45d8b0

Browse files
committed
minor #3093 [Site] Fix port to 9044 and upgrade UX dependencies (Kocal)
This PR was merged into the 2.x branch. Discussion ---------- [Site] Fix port to 9044 and upgrade UX dependencies | Q | A | -------------- | --- | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- if yes, also update UPGRADE-*.md and src/**/CHANGELOG.md --> | Documentation? | no <!-- required for new features, or documentation updates --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT <!-- Replace this notice by a description of your feature/bugfix. This will help reviewers and should be a good start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - For new features, provide some code snippets to help understand usage. - Features and deprecations must be submitted against branch main. - Update/add documentation as required (we can help!) - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry - Never break backward compatibility (see https://symfony.com/bc). --> When looking at `cors_origins https://127.0.0.1:9044` from `compose.yml`, the UX website is expected to run on `9044`. I also updated Symfony UX dependencies Commits ------- 1335052 [Site] Fix port to 9044 and upgrade UX dependencies
2 parents a336938 + 1335052 commit b45d8b0

File tree

7 files changed

+742
-517
lines changed

7 files changed

+742
-517
lines changed

ux.symfony.com/.symfony.local.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ workers:
66
cmd: ['symfony', 'console', 'tailwind:build', '--watch']
77

88
http:
9+
port: 9044
910
use_gzip: true

ux.symfony.com/.twig-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use TwigCsFixer\Rules\File\FileNameRule;
77
use TwigCsFixer\Rules\Function\IncludeFunctionRule;
88
use TwigCsFixer\Rules\Punctuation\TrailingCommaSingleLineRule;
9-
use TwigCsFixer\Rules\String\SingleQuoteRule;
9+
use TwigCsFixer\Rules\Literal\SingleQuoteRule;
1010
use TwigCsFixer\Rules\Variable\VariableNameRule;
1111
use TwigCsFixer\Rules\Whitespace\EmptyLinesRule;
1212
use TwigCsFixer\Rules\Whitespace\TrailingSpaceRule;

ux.symfony.com/composer.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"symfony/phpunit-bridge": "7.2.*",
7777
"symfony/stopwatch": "7.2.*",
7878
"symfony/web-profiler-bundle": "7.2.*",
79-
"vincentlanglet/twig-cs-fixer": "3.1.*",
79+
"vincentlanglet/twig-cs-fixer": "3.9.*",
8080
"zenstruck/browser": "^1.9",
8181
"zenstruck/foundry": "2.2.*"
8282
},
@@ -139,5 +139,14 @@
139139
"importmap:install": "symfony-cmd",
140140
"tailwind:build": "symfony-cmd"
141141
}
142+
},
143+
"repositories": {
144+
"symfony-ux-toolkit": {
145+
"type": "path",
146+
"url": "../src/Toolkit",
147+
"options": {
148+
"symlink": true
149+
}
150+
}
142151
}
143152
}

0 commit comments

Comments
 (0)