Skip to content
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 excluding webpack #4448

Merged
merged 6 commits into from
Dec 8, 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
33 changes: 18 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,32 +38,35 @@
"dependencies": {
"@types/chai": "4.2.12",
"@types/classnames": "2.2.10",
"@types/enzyme": "3.10.6",
"@types/enzyme": "3.10.8",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/mocha": "8.0.3",
"@types/mocha": "8.2.0",
"@types/prop-types": "15.7.3",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-lifecycles-compat": "^3.0.1",
"@types/react": "16.14.2",
"@types/react-dom": "16.9.10",
"@types/react-lifecycles-compat": "3.0.1",
"@types/react-transition-group": "4.4.0",
"@types/sinon": "9.0.5",
"@types/webpack": "4.41.22",
"@types/sinon": "9.0.9",
"@types/webpack": "4.41.25",
"chai": "^4.2.0",
"circle-github-bot": "^2.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"cross-env": "^7.0.3",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"gh-pages": "^3.1.0",
"http-server": "^0.12.3",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"sinon": "^9.0.3",
"prettier": "~2.1.2",
"sinon": "^9.2.1",
"stylelint-config-palantir": "^5.0.0",
"stylelint-scss": "^3.18.0",
"typescript": "~4.0.3",
"yarn-deduplicate": "^3.0.0"
"typescript": "~4.1.2",
"yarn-deduplicate": "^3.1.0"
},
"resolutions": {
"@types/react": "16.14.2"
},
"engines": {
"node": ">=12 <14"
Expand Down
14 changes: 7 additions & 7 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@
"@blueprintjs/node-build-scripts": "^1.4.0",
"@blueprintjs/test-commons": "^0.10.7",
"enzyme": "^3.11.0",
"karma": "^5.2.2",
"mocha": "^8.1.3",
"karma": "^5.2.3",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"sass-inline-svg": "^1.2.3",
"typescript": "~4.0.3",
"webpack-cli": "^3.3.12"
"typescript": "~4.1.2",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions packages/core/test/collapsible-list/collapsibleListTests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,13 @@ describe("<CollapsibleList>", () => {
}

function renderCollapsibleList(broodSize: number, props?: Partial<ICollapsibleListProps>) {
/* eslint-disable deprecation/deprecation */
return mount(
<CollapsibleList dropdownTarget={<button />} visibleItemRenderer={renderItem} {...props}>
{withItems(broodSize)}
</CollapsibleList>,
);
/* eslint-enable deprecation/deprecation */
}

function assertListItems(list: ReactWrapper<any>, expVisibleCount: number, expCollapsedCount: number) {
Expand Down
14 changes: 7 additions & 7 deletions packages/datetime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@
"@blueprintjs/node-build-scripts": "^1.4.0",
"@blueprintjs/test-commons": "^0.10.7",
"enzyme": "^3.11.0",
"karma": "^5.2.2",
"mocha": "^8.1.3",
"karma": "^5.2.3",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"typescript": "~4.0.3",
"webpack-cli": "^3.3.12"
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"typescript": "~4.1.2",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
Expand Down
12 changes: 6 additions & 6 deletions packages/docs-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,22 @@
"classnames": "^2.2",
"dom4": "^2.1.5",
"downloadjs": "^1.4.7",
"moment": "^2.29.0",
"moment": "^2.29.1",
"normalize.css": "^8.0.1",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-transition-group": "^4.4.1",
"tslib": "~1.13.0"
},
"devDependencies": {
"@blueprintjs/node-build-scripts": "^1.4.0",
"@blueprintjs/webpack-build-scripts": "^1.1.0",
"@types/chroma-js": "^2.1.0",
"@types/chroma-js": "^2.1.2",
"@types/downloadjs": "^1.4.2",
"copy-webpack-plugin": "^6.1.1",
"copy-webpack-plugin": "^6.4.0",
"npm-run-all": "^4.1.5",
"webpack-cli": "^3.3.12",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export class CollapsibleListExample extends React.PureComponent<IExampleProps, I
</>
);

/* eslint-disable deprecation/deprecation */
return (
<Example options={options} {...this.props}>
<CollapsibleList
Expand All @@ -87,6 +88,7 @@ export class CollapsibleListExample extends React.PureComponent<IExampleProps, I
</CollapsibleList>
</Example>
);
/* eslint-enable deprecation/deprecation */
}

private renderBreadcrumb(props: IMenuItemProps) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export class DateTimePickerExample extends React.PureComponent<IExampleProps, {
public render() {
return (
<Example options={false} {...this.props}>
{/* eslint-disable-next-line deprecation/deprecation */}
<DateTimePicker
className={Classes.ELEVATION_1}
value={this.state.date}
Expand Down
4 changes: 2 additions & 2 deletions packages/docs-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"glob": "^7.1.6",
"highlights": "^3.1.4",
"language-less": "github:atom/language-less",
"marked": "^1.2.0",
"semver": "^7.3.2",
"marked": "^1.2.5",
"semver": "^7.3.4",
"tree-sitter-typescript": "~0.16.1"
},
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions packages/docs-theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
"@blueprintjs/node-build-scripts": "^1.4.0",
"@types/fuzzaldrin-plus": "^0.6.1",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "~4.0.3",
"webpack-cli": "^3.3.12"
"react": "^16.14.0",
"react-dom": "^16.14.0",
"typescript": "~4.1.2",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/docs-theme/src/tags/method.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ export const Method: React.FunctionComponent<ITag & IProps> = (
return <MethodTable className={className} data={classMethod} />;
}
}
throw new Error(`Unknown @method ${name}`);
throw new Error(`Unknown @method ${value}`);
} else if (isTsMethod(member)) {
return <MethodTable className={className} data={member} />;
} else {
throw new Error(`"@method ${name}": unknown member kind "${(member as any).kind}"`);
throw new Error(`"@method ${value}": unknown member kind "${(member as any).kind}"`);
}
};
Method.contextTypes = DocumentationContextTypes;
Expand Down
4 changes: 2 additions & 2 deletions packages/docs-theme/src/tags/typescript.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ export const TypescriptExample: React.FunctionComponent<ITag & IProps> = (
}
const member = typescript[value];
if (member === undefined) {
throw new Error(`Unknown @interface ${name}`);
throw new Error(`Unknown @interface ${value}`);
} else if (isTsClass(member) || isTsInterface(member)) {
return <InterfaceTable className={className} data={member} title="Props" />;
} else if (isTsEnum(member)) {
return <EnumTable className={className} data={member} />;
} else if (isTsTypeAlias(member)) {
return <TypeAliasTable className={className} data={member} />;
} else {
throw new Error(`"@interface ${name}": unknown member kind "${(member as any).kind}"`);
throw new Error(`"@interface ${value}": unknown member kind "${(member as any).kind}"`);
}
};
TypescriptExample.contextTypes = DocumentationContextTypes;
Expand Down
14 changes: 7 additions & 7 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"dependencies": {
"@blueprintjs/eslint-plugin": "^0.3.1",
"@blueprintjs/tslint-config": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.5.1"
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-plugin-deprecation": "^1.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
"test:jest-ci": "jest --ci --runInBand"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^4.2.0",
"eslint": "^7.9.0"
"@typescript-eslint/experimental-utils": "^4.9.1",
"eslint": "^7.15.0"
},
"devDependencies": {
"@blueprintjs/node-build-scripts": "^1.4.0",
"@types/dedent": "^0.7.0",
"dedent": "^0.7.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
Expand Down
12 changes: 6 additions & 6 deletions packages/icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
"@blueprintjs/node-build-scripts": "^1.4.0",
"@blueprintjs/test-commons": "^0.10.7",
"enzyme": "^3.11.0",
"mocha": "^8.1.3",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"typescript": "~4.0.3",
"webpack-cli": "^3.3.12"
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"typescript": "~4.1.2",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/karma-build-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"dependencies": {
"@blueprintjs/webpack-build-scripts": "^1.1.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.2.2",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^1.3.0",
"karma-firefox-launcher": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-coverage": "^0.1.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"mocha": "^8.1.3"
"mocha": "^8.2.1"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/landing-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"classnames": "^2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@blueprintjs/webpack-build-scripts": "^1.1.0",
"copy-webpack-plugin": "^6.1.1",
"copy-webpack-plugin": "^6.4.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.1",
"raw-loader": "^4.0.2",
"webpack": "^4.44.2",
"webpack-dev-server": "^3.11.0"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/node-build-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
"sass-lint": "./sass-lint.js"
},
"dependencies": {
"autoprefixer": "^10.0.0",
"autoprefixer": "^10.0.4",
"cross-spawn": "^7.0.3",
"eslint": "^7.9.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"node-sass": "^4.14.1",
"node-sass-chokidar": "^1.5.0",
"node-sass-package-importer": "^5.3.2",
"postcss": "^8.0.7",
"postcss-cli": "^8.0.0",
"postcss": "^8.1.14",
"postcss-cli": "^8.3.0",
"postcss-discard-comments": "^4.0.2",
"strip-css-comments": "^4.1.0",
"stylelint": "~13.7.1",
"stylelint": "~13.8.0",
"stylelint-junit-formatter": "^0.2.2",
"svgo": "^1.3.2",
"tslint": "~6.1.3",
"typescript": "~4.0.3"
"typescript": "~4.1.2"
},
"repository": {
"type": "git",
Expand Down
14 changes: 7 additions & 7 deletions packages/select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
"@blueprintjs/karma-build-scripts": "^1.0.3",
"@blueprintjs/node-build-scripts": "^1.4.0",
"enzyme": "^3.11.0",
"karma": "^5.2.2",
"mocha": "^8.1.3",
"karma": "^5.2.3",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"typescript": "~4.0.3",
"webpack-cli": "^3.3.12"
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"typescript": "~4.1.2",
"webpack-cli": "^4.2.0"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/table-dev-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
"dom4": "^2.1.5",
"lodash-es": "^4.17.15",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@blueprintjs/webpack-build-scripts": "^1.1.0",
"@types/lodash-es": "~4.17.3",
"copy-webpack-plugin": "^6.1.1",
"copy-webpack-plugin": "^6.4.0",
"npm-run-all": "^4.1.5",
"stylelint": "~13.7.1",
"stylelint": "~13.8.0",
"webpack": "^4.44.2",
"webpack-dev-server": "^3.11.0"
},
Expand Down
Loading