
ncc
List of commands for ncc:
-
ncc:tldr:11a58 ncc: Bundle a Node.js application.$ ncc build ${filename-js}try on your machineexplain this command
-
ncc:tldr:737b5 ncc: Bundle and minify a Node.js application and generate source maps.$ ncc build --source-map ${filename-js}try on your machineexplain this command
-
ncc:tldr:7c7e0 ncc: Automatically recompile on changes to source files.$ ncc build --watch ${filename-js}try on your machineexplain this command
-
ncc:tldr:93675 ncc: Clean the `ncc` cache.$ ncc clean cachetry on your machineexplain this command
-
ncc:tldr:9d3bb ncc: Bundle a Node.js application into a temporary directory and run it for testing.$ ncc run ${filename-js}try on your machineexplain this command