* feat(linter): convert-tslint-to-eslint generators * fix(core): remove generators in collection for ng and nest * fix(core): update tao to support mixed generators and schematics * fix(core): update tao to support mixed generators and schematics * fix(core): address some PR feedback * fix(core): fix snapshots after syncing up with master * feat(core): store user preference for removeTSLintIfNoMoreTSLintTargets * fix(linter): unit tests * feat(core): apply root tslint.json conversion to root .eslintrc.json
148 lines
3.8 KiB
TypeScript
148 lines
3.8 KiB
TypeScript
import * as depcheck from 'depcheck';
|
|
|
|
// Ignore packages that are defined here per package
|
|
const IGNORE_MATCHES = {
|
|
'*': ['@nrwl/tao', '@nrwl/workspace', 'prettier', 'typescript', 'dotenv'],
|
|
angular: [
|
|
'@angular-devkit/architect',
|
|
'@angular-devkit/build-angular',
|
|
'@angular-devkit/core',
|
|
'@angular/compiler-cli',
|
|
'@angular/core',
|
|
'@angular/router',
|
|
'@ngrx/effects',
|
|
'@ngrx/router-store',
|
|
'@ngrx/store',
|
|
'injection-js',
|
|
'ng-packagr',
|
|
'rxjs',
|
|
],
|
|
cli: ['@nrwl/cli'],
|
|
cypress: ['cypress', '@angular-devkit/schematics', '@nrwl/cypress'],
|
|
devkit: ['@angular-devkit/architect', 'rxjs'],
|
|
gatsby: ['@angular-devkit/architect', 'babel-preset-gatsby', 'rxjs'],
|
|
jest: [
|
|
'jest',
|
|
'@jest/types',
|
|
'identity-obj-proxy',
|
|
'@angular-devkit/schematics',
|
|
],
|
|
linter: [
|
|
'eslint',
|
|
'@angular-devkit/schematics',
|
|
'@angular-devkit/architect',
|
|
// Installed and uninstalled dynamically when the conversion generator runs
|
|
'tslint-to-eslint-config',
|
|
],
|
|
next: [
|
|
'@angular-devkit/architect',
|
|
'@nrwl/devkit',
|
|
'express',
|
|
'http-proxy-middleware',
|
|
'next',
|
|
'rxjs',
|
|
'tsconfig-paths-webpack-plugin',
|
|
'webpack',
|
|
],
|
|
react: [
|
|
'babel-plugin-emotion',
|
|
'babel-plugin-styled-components',
|
|
'rollup',
|
|
'webpack',
|
|
'@angular-devkit/core',
|
|
'@angular-devkit/schematics',
|
|
],
|
|
storybook: [
|
|
'@angular-devkit/architect',
|
|
'@angular-devkit/core',
|
|
'@angular-devkit/schematics',
|
|
'@storybook/addon-knobs',
|
|
'@storybook/core',
|
|
'rxjs',
|
|
],
|
|
tao: [
|
|
'@angular-devkit/build-angular',
|
|
'@angular-devkit/schematics',
|
|
'@angular-devkit/core',
|
|
'@angular-devkit/architect',
|
|
],
|
|
web: ['fibers', 'node-sass'],
|
|
workspace: [
|
|
'tslint',
|
|
'@angular-devkit/architect',
|
|
'@angular-devkit/build-angular',
|
|
'@angular-devkit/core',
|
|
'@angular-devkit/schematics',
|
|
'karma',
|
|
'karma-chrome-launcher',
|
|
'karma-coverage-istanbul-reporter',
|
|
'karma-jasmine',
|
|
'karma-jasmine-html-reporter',
|
|
'webpack',
|
|
'webpack-dev-server',
|
|
],
|
|
};
|
|
|
|
export default async function getMissingDependencies(
|
|
name: string,
|
|
path: string,
|
|
dependencies: JSON,
|
|
verbose: boolean
|
|
) {
|
|
const options: any = {
|
|
/**
|
|
* If a dependency is exclusively used via a TypeScript type import
|
|
* e.g. `import type { Foo } from 'bar';`
|
|
* ...then we do not want it to trigger a missing dependency warning
|
|
* because it is not required at runtime.
|
|
*
|
|
* We can achieve this by overriding the default detector for
|
|
* ImportDeclaration nodes to check the `importKind` value.
|
|
*/
|
|
detectors: [
|
|
...Object.entries(depcheck.detector).map(([detectorName, detectorFn]) => {
|
|
// Use all the default detectors, apart from 'importDeclaration'
|
|
if (detectorName !== 'importDeclaration') {
|
|
return detectorFn;
|
|
}
|
|
const customImportDeclarationDetector: depcheck.Detector = (node) => {
|
|
return node.type === 'ImportDeclaration' &&
|
|
node.source &&
|
|
node.source.value &&
|
|
node.importKind !== 'type'
|
|
? [node.source.value]
|
|
: [];
|
|
};
|
|
return customImportDeclarationDetector;
|
|
}),
|
|
],
|
|
skipMissing: false, // skip calculation of missing dependencies
|
|
ignorePatterns: [
|
|
'*.d.ts',
|
|
'.eslintrc.json',
|
|
'*.spec*',
|
|
'src/schematics/**/files/**',
|
|
'src/migrations/**',
|
|
],
|
|
};
|
|
let { missing } = await depcheck(path, {
|
|
...options,
|
|
package: { dependencies },
|
|
});
|
|
|
|
const packagesMissing = Object.keys(missing).filter(
|
|
(m) =>
|
|
!IGNORE_MATCHES['*'].includes(m) &&
|
|
!(IGNORE_MATCHES[name] || []).includes(m)
|
|
);
|
|
|
|
if (verbose) {
|
|
console.log(`> ${name}`);
|
|
packagesMissing.map((p) => {
|
|
console.log(p, missing[p]);
|
|
});
|
|
}
|
|
|
|
return packagesMissing;
|
|
}
|