Skip to content

Commit

Permalink
chore(dev): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Mar 13, 2020
1 parent 7d729a5 commit d9bf5b2
Show file tree
Hide file tree
Showing 6 changed files with 443 additions and 329 deletions.
2 changes: 1 addition & 1 deletion .size-limit.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
"name": "@remirror/extension-tables",
"path": "@remirror/extension-tables/lib/dist/extension-tables.esm.js",
"limit": "120 KB",
"ignore": ["@types/react", "react"],
"ignore": [],
"running": false
},
{
Expand Down
3 changes: 0 additions & 3 deletions @remirror/extension-tables/tsconfig.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
"references": [
{
"path": "../core/tsconfig.prod.json"
},
{
"path": "../react-utils/tsconfig.prod.json"
}
]
}
2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"jest-puppeteer": "^4.3.0",
"looks-same": "^7.2.2",
"mkdirp-promise": "^5.0.1",
"pptr-testing-library": "^0.4.0",
"pptr-testing-library": "^0.5.0",
"puppeteer": "^2.0.0",
"puppeteer-firefox": "^0.5.0",
"signal-exit": "^3.0.2",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/parser": "^7.7.4",
"@babel/parser": "^7.6",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
Expand All @@ -201,6 +201,7 @@
"@babel/runtime": "^7.7.4",
"@changesets/cli": "^2.6.0",
"@jest/types": "^25.1.0",
"@manypkg/get-packages": "^1.0.0",
"@microsoft/api-documenter": "^7.7.0",
"@microsoft/api-extractor": "^7.6.2",
"@rollup/plugin-commonjs": "^11.0.2",
Expand All @@ -212,9 +213,9 @@
"@storybook/addon-links": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@testing-library/dom": "^6.12.2",
"@testing-library/dom": "^7.0.2",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.3.2",
"@testing-library/react": "^10.0.0",
"@types/jest": "^25.1.3",
"@types/jest-axe": "^3.2.1",
"@types/react": "^16.9.11",
Expand Down Expand Up @@ -242,7 +243,6 @@
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"eslint-plugin-unicorn": "^17.1.0",
"get-workspaces": "^0.6.0",
"husky": "^4.2.3",
"import-sort-style-module": "^6.0.0",
"jest": "^25.1.0",
Expand Down
10 changes: 5 additions & 5 deletions support/scripts/helpers/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { resolve, join, relative } = require('path');
const getWorkspaces = require('get-workspaces').default;
const { getPackages } = require('@manypkg/get-packages');
const util = require('util');
const exec = util.promisify(require('child_process').exec);

Expand Down Expand Up @@ -44,13 +44,13 @@ let packages;

const getAllDependencies = () => {
if (!packages) {
packages = getWorkspaces().then(pkgs => {
if (!pkgs) {
packages = getPackages().then(({ packages }) => {
if (!packages) {
return [];
}

return pkgs.map(pkg => ({
...pkg.config,
return packages.map(pkg => ({
...pkg.packageJson,
location: pkg.dir,
}));
});
Expand Down

0 comments on commit d9bf5b2

Please sign in to comment.