You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
README.md instruction yarn --cwd atoti-query-analyzer start does not work. The folder is called atoti-query-analyser with 's' instead of 'z' in 'analyser'. Also, when I tried to run:
$ yarn
$ yarn --cwd atoti-query-analyser start
The first yarn command returned immediately and on start I got the error:
yarn run v1.22.19
$ react-scripts start
/bin/sh: 1: react-scripts: not found
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
The issue seems to be related to node_modules that cannot be correctly created by yarn in the folder atoti-query-analyser. I also tried
But yarn --cwd atoti-query-analyser falls with an error:
yarn install v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
error [email protected]: The engine "node" is incompatible with this module. Expected version "^14 || ^16 || ^17 || ^18 || ^19". Got "20.5.1"
error Found incompatible module.
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command
The only way to build the project that worked for me was to go to atoti-query-analyser folder and run npm install. Then yarn --cwd atoti-query-analyser start works.
The text was updated successfully, but these errors were encountered:
README.md instruction
yarn --cwd atoti-query-analyzer start
does not work. The folder is called atoti-query-analyser with 's' instead of 'z' in 'analyser'. Also, when I tried to run:The first
yarn
command returned immediately and onstart
I got the error:The issue seems to be related to node_modules that cannot be correctly created by yarn in the folder atoti-query-analyser. I also tried
But
yarn --cwd atoti-query-analyser
falls with an error:The only way to build the project that worked for me was to go to atoti-query-analyser folder and run
npm install
. Thenyarn --cwd atoti-query-analyser start
works.The text was updated successfully, but these errors were encountered: