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",
. . .
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744984115a4604510.html
评论列表(0条)