* feat(angular): upgrade Angular to v12.0.0-rc.3 * feat(angular): target Nx v12.4.0-beta.0 for Angular v12.0.0-rc.0 upgrade * fix(angular): use defaultConfiguration if no other configuration is passed * cleanup(angular): sync migration folder name to target version * fix(repo): creating custom schema flattener for docs * chore(repo): amend yarn.lock * feat(angular): update angular storybook to use webpack 5 * fix(angular): add legacy peer deps for angular+jest * fix(angular): move migrations to 12.3.0-rc.0 Co-authored-by: Zack DeRose <zack.derose@gmail.com> Co-authored-by: Jason Jean <jasonjean1993@gmail.com>
152 lines
3.9 KiB
TypeScript
152 lines
3.9 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',
|
|
'@angular/compiler-cli',
|
|
'@angular/core',
|
|
'@angular/router',
|
|
'@ngrx/effects',
|
|
'@ngrx/router-store',
|
|
'@ngrx/store',
|
|
'@storybook/angular',
|
|
'injection-js',
|
|
'ng-packagr',
|
|
'rxjs',
|
|
'semver',
|
|
],
|
|
cli: ['@nrwl/cli'],
|
|
cypress: ['cypress', '@angular-devkit/schematics', '@nrwl/cypress'],
|
|
devkit: ['@angular-devkit/architect', 'rxjs'],
|
|
'eslint-plugin-nx': ['@angular-eslint/eslint-plugin'],
|
|
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;
|
|
}
|