admin管理员组

文章数量:1410674

Getting a "Error: command app:start not found" msg when I run npm start. I'm using node v18.20.6, nvm v1.1.12 and npm v10.8.2 I already have two working Jutro applications on my machine with the same configuration.

I've generated the digitalsdk and have PcSdk and CcSdk folders in src\generated I have a node_modules\@jutro\cli-app\bin\run and run.cmd files npm install completes with no errors

Has anyone seen this error before? VSCode output

I've re-generated the digitalsdks and run npm install multiple times

Getting a "Error: command app:start not found" msg when I run npm start. I'm using node v18.20.6, nvm v1.1.12 and npm v10.8.2 I already have two working Jutro applications on my machine with the same configuration.

I've generated the digitalsdk and have PcSdk and CcSdk folders in src\generated I have a node_modules\@jutro\cli-app\bin\run and run.cmd files npm install completes with no errors

Has anyone seen this error before? VSCode output

I've re-generated the digitalsdks and run npm install multiple times

Share Improve this question edited Mar 9 at 21:54 Hilory 2,1677 gold badges14 silver badges30 bronze badges asked Mar 6 at 10:10 Syntax TerrorSyntax Terror 11 bronze badge 0
Add a comment  | 

1 Answer 1

Reset to default 0

Found a resolution to this. In package.json replace the relative file paths for the @jutro libraries with actual file versions e.g.

BEFORE

  "dependencies": {
    "@digitalsdk/cli": "^10.9.2",
    "@jutro/app": "file:./@jutro/app",
    "@jutro/auth": "file:./@jutro/auth",
    "@jutro/browserslist-config": "file:./@jutro/browserslist-config",
. . .

AFTER

  "dependencies": {
    "@digitalsdk/cli": "10.9.2",
    "@jutro/app": "10.9.2",
    "@jutro/auth": "10.9.2",
    "@jutro/browserslist-config": "10.9.2",
. . .

本文标签: guidewireJutroError command appstart not foundStack Overflow