Deprecated modules on react-starter template

Deprecated modules on React Starter Template.

I just set up a react-starter template plugin with UXP Developer Tools, but when trying ‘npm install’, got some npm warnings and no ui (nothing being displayed on both panels).

npm WARN deprecated figgy-pudding@3.5.2: This module is no longer supported.
npm WARN deprecated @babel/plugin-proposal-object-rest-spread@7.20.7: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.

On UXP Developer Tools:


The panels:

I tried it and actually got that warning. However, it does load successfully. Perhaps they are separate issues.

npm WARN deprecated

This is saying that the package listed in package.json is out of date. The following command will update it and resolve the issue.

npm audit fix

Nothing being displayed on both panels

  • Have you run npm run build or npm run watch? The UXP Developer Tools should reference menifest.json in the dist folder that is created after running that command.

  • Are there any error messages in the Console of the Debug window? This will help to solve the problem.