diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index b937a31f6830..90dbd6fed203 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -781,7 +781,6 @@ packages: dependencies: '@typescript-eslint/experimental-utils': 1.13.0_eslint@5.16.0 '@typescript-eslint/parser': 1.13.0_eslint@5.16.0 - '@typescript-eslint/typescript-estree': 1.13.0 eslint: 5.16.0 eslint-utils: 1.4.0 functional-red-black-tree: 1.0.1 diff --git a/common/config/rush/pnpmfile.js b/common/config/rush/pnpmfile.js index 3832ba7dd101..7dd16dfbd0f5 100644 --- a/common/config/rush/pnpmfile.js +++ b/common/config/rush/pnpmfile.js @@ -34,14 +34,5 @@ function readPackage(packageJson, context) { // packageJson.dependencies['log4js'] = '0.6.38'; // } - // @typescript-eslint/eslint-plugin@1.12.0 introduced an implicit dependency on @typescript-eslint/typescript-estree. - // This should be fixed in a future release of @typescript-eslint/eslint-plugin. - // https://github.com/typescript-eslint/typescript-eslint/issues/705 - if (packageJson.name === '@typescript-eslint/eslint-plugin') { - context.log('Fixed up dependencies for @typescript-eslint/eslint-plugin'); - packageJson.dependencies['@typescript-eslint/typescript-estree'] = - '^1.11.0'; - } - return packageJson; }