为什么在运行nrwl nx cli的时候会出现这个错误?
Why does this error appear when running Nrwl nx cli?
我一直在尝试学习和使用 nwrl nx 框架来创建带有 angular 应用程序的新单声道存储库。但是,当尝试对任何命令使用 nx cli 时,出现以下错误:
at JSON.parse (<anonymous>)
at Object.parseJsonWithComments (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/utils/fileutils.js:43:17)
at new TargetProjectLocator (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/target-project-locator.js:14:46)
at buildExplicitTypeScriptDependencies (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/build-dependencies/explicit-project-dependencies.js:7:34)
at buildDependenciesFns.forEach (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/project-graph.js:60:41)
at Array.forEach (<anonymous>)
at buildProjectGraph (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/project-graph.js:60:26)
at Object.createProjectGraph (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/project-graph.js:39:30)
at Object.<anonymous> (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/command-line/run-one.js:15:46)
at Generator.next (<anonymous>)
(node:5280) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:5280) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
每当我 运行 nx 命令(例如
时,我都会收到此错误
nx serve <app name>
或
npx ng serve <app name>
我已经尝试卸载并重新安装 nx cli 无济于事。任何帮助或建议将不胜感激
谢谢。
一位同事帮我解决了这个问题。问题是我的 tsconfig.json 文件中的尾随逗号,而 JSON 不允许尾随逗号。因此,如果您遇到类似错误,请确保 nx/angular 项目中的主要 JSON 文件格式正确。
我一直在尝试学习和使用 nwrl nx 框架来创建带有 angular 应用程序的新单声道存储库。但是,当尝试对任何命令使用 nx cli 时,出现以下错误:
at JSON.parse (<anonymous>)
at Object.parseJsonWithComments (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/utils/fileutils.js:43:17)
at new TargetProjectLocator (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/target-project-locator.js:14:46)
at buildExplicitTypeScriptDependencies (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/build-dependencies/explicit-project-dependencies.js:7:34)
at buildDependenciesFns.forEach (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/project-graph.js:60:41)
at Array.forEach (<anonymous>)
at buildProjectGraph (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/project-graph.js:60:26)
at Object.createProjectGraph (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/core/project-graph/project-graph.js:39:30)
at Object.<anonymous> (/Users/bendunc/Documents/MTC Apps/mtc-language/node_modules/@nrwl/workspace/src/command-line/run-one.js:15:46)
at Generator.next (<anonymous>)
(node:5280) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:5280) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
每当我 运行 nx 命令(例如
时,我都会收到此错误nx serve <app name>
或
npx ng serve <app name>
我已经尝试卸载并重新安装 nx cli 无济于事。任何帮助或建议将不胜感激
谢谢。
一位同事帮我解决了这个问题。问题是我的 tsconfig.json 文件中的尾随逗号,而 JSON 不允许尾随逗号。因此,如果您遇到类似错误,请确保 nx/angular 项目中的主要 JSON 文件格式正确。