fix(misc): add dotenv as dependencies for plugins that import it (#11167)

This commit is contained in:
Jack Hsu 2022-07-15 16:46:41 -04:00 committed by GitHub
parent 57a6ebcfcd
commit 96e84eea39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 9 deletions

View File

@ -42,6 +42,7 @@
"@phenomnomnominal/tsquery": "4.1.1",
"babel-loader": "^8.0.2",
"chalk": "4.1.0",
"dotenv": "~10.0.0",
"enhanced-resolve": "^5.8.3",
"fork-ts-checker-webpack-plugin": "6.2.10",
"rxjs": "^6.5.4",

View File

@ -38,6 +38,7 @@
"@nrwl/devkit": "file:../devkit",
"@phenomnomnominal/tsquery": "4.1.1",
"chalk": "4.1.0",
"dotenv": "~10.0.0",
"identity-obj-proxy": "3.0.0",
"jest-config": "27.5.1",
"jest-resolve": "27.5.1",

View File

@ -43,6 +43,7 @@
"@nrwl/workspace": "file:../workspace",
"@svgr/webpack": "^6.1.2",
"chalk": "4.1.0",
"dotenv": "~10.0.0",
"eslint-config-next": "^12.1.0",
"fs-extra": "^10.1.0",
"ts-node": "~10.8.0",

View File

@ -37,6 +37,7 @@
"@nrwl/workspace": "file:../workspace",
"chalk": "4.1.0",
"copy-webpack-plugin": "^9.0.1",
"dotenv": "~10.0.0",
"enhanced-resolve": "^5.8.3",
"fork-ts-checker-webpack-plugin": "6.2.10",
"fs-extra": "^10.1.0",

View File

@ -31,6 +31,7 @@
"@nrwl/jest": "file:../jest",
"@nrwl/js": "file:../js",
"@nrwl/linter": "file:../linter",
"dotenv": "~10.0.0",
"fs-extra": "^10.1.0",
"rxjs": "^6.5.4",
"semver": "7.3.4",

View File

@ -34,6 +34,7 @@
"@nrwl/linter": "file:../linter",
"@nrwl/workspace": "file:../workspace",
"core-js": "^3.6.5",
"dotenv": "~10.0.0",
"semver": "7.3.4",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "3.5.2"

View File

@ -2,15 +2,7 @@ import * as depcheck from 'depcheck';
// Ignore packages that are defined here per package
const IGNORE_MATCHES = {
'*': [
'nx',
'@nrwl/cli',
'@nrwl/workspace',
'prettier',
'typescript',
'dotenv',
'rxjs',
],
'*': ['nx', '@nrwl/cli', '@nrwl/workspace', 'prettier', 'typescript', 'rxjs'],
angular: [
'@angular-devkit/architect',
'@angular-devkit/build-angular',