我正在尝试使用xplat生成新应用
我正在使用节点版本11.15
我尝试执行以下操作
npx create-xplat-workspace myworkspace
我会生成所有提示信息
? Would you like to generate xplat supporting architecture now? You can also generate later with: nx generate @nstudio/xplat:init
not right now [just add xplat tooling]
electron [generate xplat Electron support]
❯ ionic [generate xplat Ionic support]
nativescript [generate xplat NativeScript support]
web [generate xplat Web support]
我选择离子型,出现以下错误
You provided an invalid object where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.
这是全部
`npm install -D @nstudio/xplat
> @nstudio/xplat@8.0.5 postinstall /Users/ag/nxprojects/myworkspace/node_modules/@nstudio/xplat
> node src/utils/postinstall.js
Patch for nx format have been applied
> XPLAT Note:
xplat is updating "/Users/ag/nxprojects/myworkspace/.prettierignore" with a few important extra rules. You may double-check the contents afterwards to ensure they meet your satisfaction.
npm WARN acorn-dynamic-import@4.0.0 requires a peer of acorn@^6.0.0 but none is installed. You must install peer dependencies yourself.
+ @nstudio/xplat@8.0.5
added 11 packages from 66 contributors and audited 898038 packages in 30.891s
found 1 low severity vulnerability
run `npm audit fix` to fix them, or `npm audit` for details
npx nx g @nstudio/xplat:init
> NX NOTE Nx didn't recognize the command, forwarding on to the Angular CLI.
? Would you like to generate xplat supporting architecture now? You can also generate later with: nx generate @nstudio/xplat:init ionic [generate xplat Ionic support]
? Do you prefer to use a frontend framework? angular [ensure platforms are added with Angular]
? Please input a 2-3 character prefix to use with xplat generators: ci
You provided an invalid object where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.
Command failed: npx nx g @nstudio/xplat:init`
答案 0 :(得分:0)
遇到同样的问题,发现它在nx g @nstudio/xplat:init
上失败了,但是如果您进入工作区并运行ng g @nstudio/xplat:init
,它将完成。