cd assets
npm i
This will watch the assets/css and assets/js directories for changes and compile on the fly. This won't generate any .map files.
cd assets
npm run watch
This will build the contents of assets/css and assets/js for production (including any .map files).
cd assets
npm run build