-
Notifications
You must be signed in to change notification settings - Fork 35
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
Upgrade dependencies #293
Upgrade dependencies #293
Changes from all commits
f0960b0
06d46c8
53171e6
92f0936
cb3981d
130fc73
cdf1aa5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,13 +50,13 @@ format-cfn: | |
|
||
.PHONY: format-docs | ||
format-docs: | ||
npx prettier-eslint ./*.md ./docs/*.md --write --prose-wrap always | ||
npx prettier ./*.md ./docs/*.md --write | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Create React App v5 moved internally to ESLint 8, and prettier-eslint cli is stuck to ESLint 5: prettier/prettier-eslint-cli#304 When upgrading, prettier-eslint was failing. I decided to just move to prettier cli, which has a When running with just prettier, the linting is 99% same. You'll notice a couple of new line changes in 5 JavaScript files, but I decided that it was ok for now. |
||
git add *.md | ||
git add docs/*.md | ||
|
||
.PHONY: format-js | ||
format-js: | ||
npx prettier-eslint $(PWD)/frontend/src/**/*.js --write --prose-wrap always | ||
npx prettier $(PWD)/frontend/src/**/*.js --write | ||
git add frontend/src/ | ||
|
||
.PHONY: format-python | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
pyarrow==2.0.0 | ||
pyarrow==7.0.0 | ||
s3fs==0.4.0 | ||
python-snappy==0.5.4 | ||
pandas==1.1.1 | ||
boto3==1.17.85 | ||
numpy==1.19.1 | ||
numpy==1.21.5 | ||
cryptography==3.4.7 | ||
urllib3>=1.26.5 | ||
aws-assume-role-lib>=2.9.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Create React App v5 includes loads of warnings for node 12 so I moved all to node 14.