Skip to content

chore(deps-and-node-lts): locks node lts and revert bump deps #1140

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 4 commits into from
Apr 17, 2020
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ workflows:
- test_unit:
version: '13'
- test_lint:
version: '13'
version: '12'
- test_types:
version: '13'
version: '12'
- test_build:
version: '13'
version: '12'
- test_browser:
version: '13'
version: '12'
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12.16.2
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-typescript": "7.9.0",
"@microsoft/api-extractor": "7.7.13",
"@rollup/plugin-alias": "3.1.0",
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "7.8.3",
"@microsoft/api-extractor": "7.7.8",
"@rollup/plugin-alias": "3.0.1",
"@rollup/plugin-json": "4.0.2",
"@rollup/plugin-node-resolve": "7.1.3",
"@types/jest": "25.2.1",
"@types/node": "13.11.1",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"@rollup/plugin-node-resolve": "7.1.1",
Comment on lines 32 to +39
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suspect either of the rollup plugins to have caused the regression. Can you try upgrading one at a time to see which is causing it?

Otherwise it could be babel too

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Honestly, it requires a little bit more time than I have right now. So I probably prefer do it later so I can make a release next Monday.

"@types/jest": "25.1.4",
"@types/node": "13.9.0",
"@typescript-eslint/eslint-plugin": "2.22.0",
"@typescript-eslint/parser": "2.22.0",
"@wdio/cli": "5.18.7",
"@wdio/jasmine-framework": "5.18.6",
"@wdio/local-runner": "5.18.7",
Expand All @@ -51,40 +51,40 @@
"barrelsby": "2.2.0",
"bundlesize": "0.18.0",
"dotenv": "8.2.0",
"dotenv-extended": "2.8.0",
"dotenv-extended": "2.7.1",
"eslint": "6.8.0",
"eslint-config-algolia": "15.0.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-prettier": "6.10.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-functional": "3.0.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-simple-import-sort": "5.0.2",
"eslint-plugin-simple-import-sort": "5.0.1",
"eslint-plugin-sonarjs": "0.5.0",
"eslint-plugin-wdio": "5.13.2",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"husky": "4.2.5",
"jest": "25.3.0",
"husky": "4.2.3",
"jest": "25.1.0",
"jest-mock-console": "1.0.0",
"lerna": "3.20.2",
"nock": "12.0.3",
"nock": "12.0.2",
"prettier": "1.19.1",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-filesize": "6.2.1",
"rollup-plugin-ignore": "1.0.5",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-terser": "5.3.0",
"rollup-plugin-terser": "5.2.0",
"rollup-plugin-typescript2": "0.26.0",
"serve": "11.3.0",
"sort-package-json": "1.41.0",
"ts-jest": "25.3.1",
"sort-package-json": "1.40.0",
"ts-jest": "25.2.1",
"ts-mockito": "2.5.0",
"ts-node": "8.8.2",
"ts-node": "8.6.2",
"typescript": "3.8.3",
"webdriverio": "5.18.7",
"xhr-mock": "2.5.1"
Expand Down
Loading