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
1 Answer
Reset to default 0Found 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
版权声明:本文标题:guidewire - Jutro - Error: command app:start not found - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744984115a2635990.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论