-
Notifications
You must be signed in to change notification settings - Fork 41
1.x rewrite (Sylius 1.13/1.14, no API layer) #269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 1.x
Are you sure you want to change the base?
Changes from 34 commits
6b67881
e9524e6
7718451
4ae8dd7
f7ff583
2e9f7cc
5005586
90c2c40
4fbd74d
4ec1f6a
bb4b7b4
d7750e2
a8ff748
5d30bcc
269f229
9efebfe
bc57008
f998fb7
78eaa6a
cc32585
2832afc
ea77c03
e1e0dd9
5387cdf
003081e
0155884
3d291e3
319440f
99b1c70
af3a5cc
75d17b6
104b5a1
e7576a6
58d14b8
57f42fc
e37fae7
527838e
6b78b5e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,12 +2,11 @@ | |
| /node_modules/ | ||
| /composer.lock | ||
|
|
||
| /etc/build/* | ||
| !/etc/build/.gitignore | ||
|
|
||
| /tests/Application/yarn.lock | ||
|
|
||
| /behat.yml | ||
| /phpspec.yml | ||
| /.build/ | ||
| /.phpunit.result.cache | ||
| .php-version | ||
|
|
||
| /tests/Application/yarn.lock | ||
| /.playwright-mcp/ | ||
| /tests/Application/public/build/ | ||
| /tests/Application/public/router.php | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done in 6b78b5e — removed tests/Application/public/router.php and its .gitignore entry. Running the server with symfony serve is already documented in CLAUDE.md. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "mcpServers": { | ||
| "playwright": { | ||
| "type": "stdio", | ||
| "command": "npx", | ||
| "args": [ | ||
| "@playwright/mcp@latest" | ||
| ], | ||
| "env": {} | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the newest action and I don't think you need to explicitly give it the files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in 6b78b5e — bumped to codecov-action@v5 and removed the explicit files input.