This removes the node_modules from the repo, instead using the ncc utility to package all of the needed prereqs into a single file. This means that updating prereqs only requires updating the package.json, package-lock.json, and the built script, rather than needing to manage all of the files in node_modules.
The single built file can be updated using the command npm run build.
Also updates the prereqs being used, which should fix the warnings about :set-output.
This removes the node_modules from the repo, instead using the ncc utility to package all of the needed prereqs into a single file. This means that updating prereqs only requires updating the package.json, package-lock.json, and the built script, rather than needing to manage all of the files in node_modules.
The single built file can be updated using the command
npm run build
.Also updates the prereqs being used, which should fix the warnings about
:set-output
.