Skip to content

Commit

Permalink
Dependency upgrades and cleanups (grommet#7289)
Browse files Browse the repository at this point in the history
* re-trigger token circle ci

* add dependencies for aug

* updated dependencies

---------

Co-authored-by: Brittany Archibeque <[email protected]>
Co-authored-by: britt6612 <[email protected]>
Co-authored-by: Brittany <[email protected]>
  • Loading branch information
4 people authored Aug 12, 2024
1 parent 56aa75a commit 2ebf6e4
Show file tree
Hide file tree
Showing 4 changed files with 422 additions and 203 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"presets": ["./tools/grommet-babel-preset-es2015", "@babel/preset-react"],
"plugins": [
["styled-components", { "useDisplayName": false }],
["@babel/plugin-proposal-class-properties", { "loose": true }]
["@babel/plugin-transform-class-properties", { "loose": true }]
],
"env": {
"es6": {
Expand Down
37 changes: 19 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,19 @@
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/node": "^7.24.7",
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/node": "^7.25.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-do-expressions": "^7.24.7",
"@babel/plugin-proposal-export-default-from": "^7.24.7",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-transform-logical-assignment-operators": "^7.24.7",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
"@babel/plugin-transform-optional-chaining": "^7.24.8",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@storybook/addon-a11y": "7.0.20",
"@storybook/addon-storysource": "7.0.20",
Expand All @@ -81,14 +82,14 @@
"@storybook/react": "7.0.20",
"@storybook/react-webpack5": "7.0.20",
"@storybook/source-loader": "7.0.20",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/testcafe": "^5.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20.14.10",
"@types/node": "^22.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
Expand All @@ -98,11 +99,11 @@
"babel-plugin-styled-components": "^2.1.4",
"babel-plugin-transform-imports": "^2.0.0",
"bundlesize2": "^0.0.31",
"chromatic": "^11.5.4",
"chromatic": "^11.7.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"copyfiles": "^2.4.1",
"core-js": "^3.37.1",
"core-js": "^3.38.0",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"eslint": "^8.57.0",
Expand All @@ -122,8 +123,8 @@
"jest-cli": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "7.0.5",
"jsdom": "^24.1.0",
"postcss": "^8.4.39",
"jsdom": "^24.1.1",
"postcss": "^8.4.41",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
Expand All @@ -140,10 +141,10 @@
"testcafe": "3.3.0",
"testcafe-react-selectors": "^5.0.3",
"testcafe-reporter-xunit": "^2.2.3",
"ts-jest": "^29.2.0",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
Expand Down
8 changes: 4 additions & 4 deletions storybook/.babelrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"presets": [["@babel/preset-env", { "loose": true }], "@babel/preset-react"],
"plugins": [
["@babel/plugin-proposal-class-properties", { "loose": true }],
["@babel/plugin-transform-class-properties", { "loose": true }],
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-logical-assignment-operators",
["@babel/plugin-proposal-optional-chaining", { "loose": false }],
"@babel/plugin-transform-logical-assignment-operators",
["@babel/plugin-transform-optional-chaining", { "loose": false }],
["@babel/plugin-proposal-pipeline-operator", { "proposal": "minimal" }],
["@babel/plugin-proposal-nullish-coalescing-operator", { "loose": false }],
["@babel/plugin-transform-nullish-coalescing-operator", { "loose": false }],
"@babel/plugin-proposal-do-expressions",
["styled-components", { "useDisplayName": false }],
[
Expand Down
Loading

0 comments on commit 2ebf6e4

Please sign in to comment.