In the indexer service, the .nvmrc file specifies Node.js v16 as the version constraint. However, in the package.json file, the packageManager field requires pnpm@10.12.4+sha1.88a0ccfe72d6345dede50dc9d6158400be2420eb.
The problem is that for Node.js v16, the highest supported pnpm version is v8. This creates a compatibility issue between the Node.js version constraint and the required pnpm version.
How should this issue be resolved?
In the indexer service, the
.nvmrcfile specifies Node.js v16 as the version constraint. However, in thepackage.jsonfile, thepackageManagerfield requirespnpm@10.12.4+sha1.88a0ccfe72d6345dede50dc9d6158400be2420eb.The problem is that for Node.js v16, the highest supported pnpm version is v8. This creates a compatibility issue between the Node.js version constraint and the required pnpm version.
How should this issue be resolved?