Skip to content
This repository has been archived by the owner on Oct 27, 2021. It is now read-only.

Commit

Permalink
Upgrade babel
Browse files Browse the repository at this point in the history
This should resolve an issue with Node v14 and `@babel/preset-env`. The
pipeline was failing on an import. Here's an example:
https://github.com/PsychoLlama/filament/runs/707159418?check_suite_focus=true#step:6:9

Babel published a fix. I just needed to upgrade. See:
nodejs/node#32852
  • Loading branch information
PsychoLlama committed May 25, 2020
1 parent e2a4df3 commit b6cac4c
Show file tree
Hide file tree
Showing 2 changed files with 357 additions and 109 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"@babel/runtime": "^7.9.6",
"change-case": "^4.1.1",
"clone": "^2.1.2",
"dataloader": "^2.0.0",
Expand All @@ -59,11 +59,11 @@
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-llama": "^3.0.0",
Expand Down
Loading

0 comments on commit b6cac4c

Please sign in to comment.