Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 48574a7

Browse files
committed
Drop Biome.js for oxfmt and oxlint
1 parent 0da6b5f commit 48574a7

7 files changed

Lines changed: 52 additions & 53 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Please do not submit any Pull Requests here. They will be closed.
2-
---
1+
## Please do not submit any Pull Requests here. They will be closed.
32

43
Please submit your PR here instead:
54
https://github.com/symfony/ux
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
name: Close Pull Request
22

33
on:
4-
pull_request_target:
5-
types: [opened]
4+
pull_request_target:
5+
types: [opened]
66

77
jobs:
8-
run:
9-
runs-on: ubuntu-latest
10-
steps:
11-
- uses: superbrothers/close-pull-request@v3
12-
with:
13-
comment: |
14-
Thanks for your Pull Request! We love contributions.
15-
16-
However, you should instead open your PR on the main repository:
17-
https://github.com/symfony/ux
18-
19-
This repository is what we call a "subtree split": a read-only subset of that main repository.
20-
We're looking forward to your PR there!
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: superbrothers/close-pull-request@v3
12+
with:
13+
comment: |
14+
Thanks for your Pull Request! We love contributions.
15+
16+
However, you should instead open your PR on the main repository:
17+
https://github.com/symfony/ux
18+
19+
This repository is what we call a "subtree split": a read-only subset of that main repository.
20+
We're looking forward to your PR there!

.symfony.bundle.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
branches: ["2.x"]
2-
maintained_branches: ["2.x"]
3-
doc_dir: "doc"
1+
branches: ['2.x']
2+
maintained_branches: ['2.x']
3+
doc_dir: 'doc'

CHANGELOG.md

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,71 +2,72 @@
22

33
## 2.33
44

5-
- Add support for React 19.
5+
- Add support for React 19.
66

77
Dependencies `react` and `react-dom` need to be updated together to version `^19.0` if you want to use React 19.
88

99
## 2.30
1010

11-
- Ensure compatibility with PHP 8.5
11+
- Ensure compatibility with PHP 8.5
1212

1313
## 2.29.0
1414

15-
- Add Symfony 8 support
15+
- Add Symfony 8 support
1616

1717
## 2.28.0
1818

19-
- [BC BREAK] By modernizing our building tools, the file `dist/render_controller.js` now does not contain any useless
20-
code related to `development` environment.
19+
- [BC BREAK] By modernizing our building tools, the file `dist/render_controller.js` now does not contain any useless
20+
code related to `development` environment.
2121

2222
This file is now smaller and faster to load, but the imported module changed from `react-dom` to `react-dom/client`:
2323
- You **are not impacted** if you are using the Symfony AssetMapper and Symfony Flex, or Webpack Encore.
2424
- You **are impacted** if you are using the Symfony AssetMapper but **not** Symfony Flex, you need to :
25+
2526
```shell
2627
php bin/console importmap:remove react-dom
2728
php bin/console importmap:require react-dom/client
2829
```
2930

3031
## 2.26.0
3132

32-
- Improve error handling when resolving a React component
33+
- Improve error handling when resolving a React component
3334

3435
## 2.21.0
3536

36-
- Add `permanent` option to the `react_component` Twig function, to prevent the
37-
_unmounting_ when the component is deconnected and immediately re-connected
37+
- Add `permanent` option to the `react_component` Twig function, to prevent the
38+
_unmounting_ when the component is deconnected and immediately re-connected
3839

3940
## 2.13.2
4041

41-
- Revert "Change JavaScript package to `type: module`"
42+
- Revert "Change JavaScript package to `type: module`"
4243

4344
## 2.13.0
4445

45-
- Add Symfony 7 support.
46-
- Change JavaScript package to `type: module`
46+
- Add Symfony 7 support.
47+
- Change JavaScript package to `type: module`
4748

4849
## 2.9.0
4950

50-
- Add support for symfony/asset-mapper
51+
- Add support for symfony/asset-mapper
5152

52-
- Replace `symfony/webpack-encore-bundle` by `symfony/stimulus-bundle` in dependencies
53+
- Replace `symfony/webpack-encore-bundle` by `symfony/stimulus-bundle` in dependencies
5354

54-
- Minimum PHP version is now 8.1
55+
- Minimum PHP version is now 8.1
5556

5657
## 2.7.0
5758

58-
- Add `assets/src` to `.gitattributes` to exclude source TypeScript files from
59-
installing.
59+
- Add `assets/src` to `.gitattributes` to exclude source TypeScript files from
60+
installing.
6061

61-
- TypeScript types are now included.
62+
- TypeScript types are now included.
6263

6364
## 2.6.0
6465

65-
- [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make
66-
sure the path in your `package.json` file is updated accordingly.
66+
- [BC BREAK] The `assets/` directory was moved from `Resources/assets/` to `assets/`. Make
67+
sure the path in your `package.json` file is updated accordingly.
6768

68-
- The directory structure of the bundle was updated to match modern best-practices.
69+
- The directory structure of the bundle was updated to match modern best-practices.
6970

7071
## 2.2
7172

72-
- Component added
73+
- Component added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ Help Symfony by [sponsoring][3] its development!
2020

2121
## Resources
2222

23-
- [Documentation](https://symfony.com/bundles/ux-react/current/index.html)
24-
- [Report issues](https://github.com/symfony/ux/issues) and
25-
[send Pull Requests](https://github.com/symfony/ux/pulls)
26-
in the [main Symfony UX repository](https://github.com/symfony/ux)
23+
- [Documentation](https://symfony.com/bundles/ux-react/current/index.html)
24+
- [Report issues](https://github.com/symfony/ux/issues) and
25+
[send Pull Requests](https://github.com/symfony/ux/pulls)
26+
in the [main Symfony UX repository](https://github.com/symfony/ux)
2727

2828
[1]: https://symfony.com/backers
2929
[2]: https://mercure.rocks

assets/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ JavaScript assets of the [symfony/ux-react](https://packagist.org/packages/symfo
66

77
This npm package is **reserved for advanced users** who want to decouple their JavaScript dependencies from their PHP dependencies (e.g., when building Docker images, running JavaScript-only pipelines, etc.).
88

9-
We **strongly recommend not installing this package directly**, but instead install the PHP package [symfony/ux-react](https://packagist.org/packages/symfony/ux-react) in your Symfony application with [Flex](https://github.com/symfony/flex) enabled.
9+
We **strongly recommend not installing this package directly**, but instead install the PHP package [symfony/ux-react](https://packagist.org/packages/symfony/ux-react) in your Symfony application with [Flex](https://github.com/symfony/flex) enabled.
1010

1111
If you still want to install this package directly, please make sure its version exactly matches [symfony/ux-react](https://packagist.org/packages/symfony/ux-react) PHP package version:
12+
1213
```shell
1314
composer require symfony/ux-react:2.23.0
1415
npm add @symfony/[email protected]
@@ -18,7 +19,7 @@ npm add @symfony/[email protected]
1819

1920
## Resources
2021

21-
- [Documentation](https://symfony.com/bundles/ux-react/current/index.html)
22-
- [Report issues](https://github.com/symfony/ux/issues) and
23-
[send Pull Requests](https://github.com/symfony/ux/pulls)
24-
in the [main Symfony UX repository](https://github.com/symfony/ux)
22+
- [Documentation](https://symfony.com/bundles/ux-react/current/index.html)
23+
- [Report issues](https://github.com/symfony/ux/issues) and
24+
[send Pull Requests](https://github.com/symfony/ux/pulls)
25+
in the [main Symfony UX repository](https://github.com/symfony/ux)

assets/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@
2828
"test": "pnpm run test:unit && pnpm run test:browser",
2929
"test:unit": "../../../bin/unit_test_package.sh .",
3030
"test:browser": "playwright test",
31-
"test:browser:ui": "playwright test --ui",
32-
"check": "biome check",
33-
"ci": "biome ci"
31+
"test:browser:ui": "playwright test --ui"
3432
},
3533
"symfony": {
3634
"controllers": {

0 commit comments

Comments
 (0)