Why, when you run "NPM install," not all NPM modul...
# suitecommerce
c
Why, when you run "NPM install," not all NPM modules outlined in the package.json install? Forcing you to install 1 NPM module at a time?
k
What SCA version are you installing/building? I ran into a similar problem trying to build 6.11.5. The issue was due to npm encountering errors because newer modules were being installed or the original modules versions no longer exist.
c
Kilimanjaro... After installing 1 package at a time, I have now run into this error.
Copy code
/Users/cdembek/.nvm/versions/node/v6.11.5/lib/node_modules/gulp/node_modules/yargs-parser/build/index.cjs:1007
        throw Error(`yargs parser supports a minimum Node.js version of ${minNodeVersion}. Read our version support policy: <https://github.com/yargs/yargs-parser#supported-nodejs-versions>`);
        ^

Error: yargs parser supports a minimum Node.js version of 10. Read our version support policy: <https://github.com/yargs/yargs-parser#supported-nodejs-versions>
    at Error (native)
    at Object.<anonymous> (/Users/cdembek/.nvm/versions/node/v6.11.5/lib/node_modules/gulp/node_modules/yargs-parser/build/index.cjs:1007:15)
    at Module._compile (module.js:570:32)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.require (module.js:497:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/Users/cdembek/.nvm/versions/node/v6.11.5/lib/node_modules/gulp/node_modules/yargs/build/index.cjs:2855:16)
Also, this error
Copy code
npm ERR! Darwin 23.4.0
npm ERR! argv "/Users/cdembek/.nvm/versions/node/v6.11.5/bin/node" "/Users/cdembek/.nvm/versions/node/v6.11.5/bin/npm" "install"
npm ERR! node v6.11.5
npm ERR! npm  v3.10.10
npm ERR! path /Users/cdembek/Downloads/SuiteCommerce Advanced Kilimanjaro copy/node_modules/.staging/@types/babylon-575e8dc3/package.json
npm ERR! code ENOTDIR
npm ERR! errno -20
npm ERR! syscall open

npm ERR! ENOTDIR: not a directory, open '/Users/cdembek/Downloads/SuiteCommerce Advanced Kilimanjaro copy/node_modules/.staging/@types/babylon-575e8dc3/package.json'
npm ERR! 
npm ERR! If you need help, you may report this error at:
npm ERR!     <<https://github.com/npm/npm/issues>>

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/cdembek/Downloads/SuiteCommerce Advanced Kilimanjaro copy/npm-debug.log
k
I ran into the same problems and gave up. I was working on a script that parsed the package.json file and loaded each package separately. I abandoned it when I found an existing node_modules folder for Kilimanjaro SCA
A friend also gave me a zip file that contained the node_modules folder, but MacOS complained that it was downloaded from the internet. I didn’t resolve this because I found another folder. I think the script that parsed the package.json file would have worked because I was going to have it load load the specific version instead of a newer version and stop when an error occurred. Then I could troubleshoot the specific package dependency version declaration to prevent newer packages from being loaded.
c
Thank you for the feedback, Keith!