How to deploy gulp on production server
问题 When building a website (for the sake of clarity an HTML/JS only website) I use gulp to compile and concat some files which are then placed in a build/ folder. The folder structure looks something like this: ├── assets │ ├── images │ ├── javascripts │ │ └── app.js │ └── stylesheets │ └── style.scss ├── bower.json ├── build │ ├── bower_components │ ├── images │ ├── index.html │ ├── scripts.min.js │ └── styles.min.css ├── gulpfile.js ├── index.html ├── node_modules │ ├── gulp-module-1 │ └──