Skip to content

Commit

Permalink
Merge pull request #264 from RTIInternational/babel7
Browse files Browse the repository at this point in the history
Update to babel 7 to fix fsevents vulnerability
  • Loading branch information
AstridKery committed Nov 17, 2023
2 parents 086caf4 + 3e9acf0 commit 2e84ba6
Show file tree
Hide file tree
Showing 3 changed files with 935 additions and 511 deletions.
13 changes: 9 additions & 4 deletions frontend/.babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"presets": [
"es2015",
"react"
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"transform-runtime",
"transform-object-rest-spread",
[
"@babel/plugin-transform-runtime",
{
"corejs": 2
}
],
"@babel/plugin-proposal-object-rest-spread",
"transform-react-remove-prop-types"
]
}
18 changes: 9 additions & 9 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@
"url": "[email protected]:cds/smart.git"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"@tanstack/react-query": "^4.29.7",
"@tanstack/react-table": "^8.9.1",
"app-module-path": "^2.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-loader": "^8.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.6.0",
"bootstrap-sass": "^3.4.1",
"chai": "^4.1.0",
Expand Down
Loading

0 comments on commit 2e84ba6

Please sign in to comment.