Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
linbudu599 committed Apr 23, 2022
1 parent 78404fc commit 643d576
Show file tree
Hide file tree
Showing 5 changed files with 983 additions and 609 deletions.
Binary file modified .DS_Store
Binary file not shown.
47 changes: 24 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,25 @@
},
"private": true,
"devDependencies": {
"@nrwl/cli": "13.8.4",
"@nrwl/devkit": "13.8.4",
"@nrwl/eslint-plugin-nx": "13.8.4",
"@nrwl/jest": "13.8.4",
"@nrwl/js": "13.8.4",
"@nrwl/linter": "13.8.4",
"@nrwl/node": "^13.8.4",
"@nrwl/nx-plugin": "^13.8.4",
"@nrwl/tao": "13.8.4",
"@nrwl/workspace": "13.8.4",
"@nrwl/cli": "14.0.2",
"@nrwl/devkit": "14.0.2",
"@nrwl/eslint-plugin-nx": "14.0.2",
"@nrwl/jest": "14.0.2",
"@nrwl/js": "14.0.2",
"@nrwl/linter": "14.0.2",
"@nrwl/node": "^14.0.2",
"@nrwl/nx-plugin": "^14.0.2",
"@nrwl/tao": "14.0.2",
"@nrwl/workspace": "14.0.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jest": "27.4.1",
"@types/jsonfile": "^6.1.0",
"@types/lodash": "^4.14.179",
"@types/node": "17.0.21",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.25",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "~5.10.0",
"@typescript-eslint/parser": "~5.10.0",
"@typescript-eslint/eslint-plugin": "~5.20.0",
"@typescript-eslint/parser": "~5.20.0",
"cac": "^6.7.12",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
Expand All @@ -57,25 +57,26 @@
"cz-customizable": "^6.3.0",
"dotenv": "~10.0.0",
"esbuild": "^0.14.25",
"eslint": "~8.10.0",
"eslint": "~8.14.0",
"eslint-config-prettier": "8.5.0",
"fs-extra": "^10.0.1",
"fs-extra": "^10.1.0",
"git-cz": "^4.8.0",
"html-webpack-inline-source-plugin": "^0.0.10",
"jest": "27.5.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"nx": "^14.0.2",
"ow": "^0.28.1",
"pacote": "^13.0.3",
"prettier": "^2.5.1",
"sort-package-json": "^1.54.0",
"ts-jest": "27.1.3",
"pacote": "^13.1.1",
"prettier": "^2.6.2",
"sort-package-json": "^1.55.0",
"ts-jest": "27.1.4",
"ts-morph": "^14.0.0",
"tslib": "^2.3.1",
"typescript": "~4.6.2"
"tslib": "^2.4.0",
"typescript": "~4.6.3"
},
"dependencies": {
"tslib": "^2.3.1"
"tslib": "^2.4.0"
},
"resolutions": {
"chalk": "^4.0.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/nx-plugin-prisma/src/executors/info/info.impl.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ExecutorContext } from '@nrwl/devkit';
import { PrismaInfoExecutorSchema } from './schema';
import { nxReportHandler, envInfo } from 'nx-plugin-devkit';
import { envInfo } from 'nx-plugin-devkit';
import { reportHandler } from 'nx/src/command-line/report';
import execa from 'execa';
import npmRunPath from 'npm-run-path';

Expand Down Expand Up @@ -29,7 +30,7 @@ export default async function infoExecutor(

console.log(stdout);

nxReportHandler();
reportHandler();

const envInfos = await envInfo([
'prisma',
Expand Down
Loading

0 comments on commit 643d576

Please sign in to comment.