Skip to content

rename babel proposals to transforms #389

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

Merged
merged 6 commits into from
May 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
dist: noble
language: node_js
node_js:
- "16"
- "20"
before_install:
- git config --global url."https://git@".insteadOf git://
- echo -e "machine github.com\n login $CI_USER_TOKEN" > ~/.netrc
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG-FRONTIER.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 8.10.7

- Rename released proposal plugins to transform plugins
- Update babel-preset-frontier to latest with transform renames
- Update to Node 20

## 8.10.6

- Add optional override to "title" in layout.ejs
Expand Down
97 changes: 44 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/react-scripts/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
20
10 changes: 5 additions & 5 deletions packages/react-scripts/config/simple-webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,23 @@ module.exports = {
exclude: ['cypress/**/*.*', 'src/locales/**/*.*', 'src/**/fixtures/*.js'],
},
],
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-transform-optional-chaining',
'@babel/plugin-transform-nullish-coalescing-operator',
'babel-plugin-macros',
[
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-class-properties',
{
loose: true,
},
],
[
'@babel/plugin-proposal-private-methods',
'@babel/plugin-transform-private-methods',
{
loose: true,
},
],
[
'@babel/plugin-proposal-private-property-in-object',
'@babel/plugin-transform-private-property-in-object',
{
loose: true,
},
Expand Down
6 changes: 3 additions & 3 deletions packages/react-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fs/react-scripts",
"version": "8.10.6",
"version": "8.10.7",
"upstreamVersion": "5.0.1",
"description": "Configuration and scripts for Create React App.",
"repository": {
Expand All @@ -10,7 +10,7 @@
},
"license": "MIT",
"engines": {
"node": ">=16.0.0"
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/fs-webdev/create-react-app/issues"
Expand Down Expand Up @@ -52,7 +52,7 @@
"@babel/core": "^7.16.0",
"@emotion/babel-plugin": "^11.13.5",
"@fs/auth-middleware": "^2.0.1",
"@fs/babel-preset-frontier": "^5.0.0",
"@fs/babel-preset-frontier": "^5.2.0",
"@fs/webpack-wci18n": "^1.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
"@svgr/webpack": "^5.5.0",
Expand Down