erisu commented on PR #668: URL: https://github.com/apache/cordova-cli/pull/668#issuecomment-3092281079
Can you run `npm update` and make sure any differences are pushed? When I run the following: ``` git clean -fdx npm i npm update ``` I see changes to `package-lock.json`. Basically, `node_modules/tsconfig-paths/node_modules/json5` is changed to `node_modules/json5`. Previously, with `nyc`, we can see `json5` existed in two dependencies. This would explain the `node_modules/tsconfig-paths/node_modules/json5`. ``` ├─┬ @cordova/[email protected] │ └─┬ [email protected] │ └─┬ [email protected] │ └── [email protected] └─┬ [email protected] └─┬ [email protected] └─┬ @babel/[email protected] └── [email protected] ``` But as `nyc` is removed in this PR and `c8` does not have any sub-dependencies for`json5`, it became flattened. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
