Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
31 lines
794 B
Markdown
31 lines
794 B
Markdown
# `babel-preset-current-node-syntax`
|
|
|
|
> A Babel preset that enables parsing of proposals supported by the current Node.js version.
|
|
|
|
## Installation
|
|
|
|
If you are using yarn:
|
|
```
|
|
yarn add --dev babel-preset-current-node-syntax
|
|
```
|
|
|
|
If you are using npm:
|
|
```
|
|
npm install --save-dev babel-preset-current-node-syntax
|
|
```
|
|
|
|
## Contributing
|
|
|
|
PRs are welcome! The codebase is so small that I didn't setup a linter, but try
|
|
to match the style of the existing code.
|
|
|
|
You can run tests with the following command:
|
|
```
|
|
yarn node test/index.js
|
|
```
|
|
|
|
The `test/fixtures.json` file contains a bunch of syntax tests, alongside with
|
|
the minimum supported node version for each of them. Babel should throw on
|
|
older versions, without support for that given syntax.
|
|
All the tests are run using `@babel/parser@7.0.0`.
|