gimm / gulp-express

gulp plugin for express
56 stars 26 forks source link

options pass to run() override by defaultOptions #1

Closed hwwan80 closed 10 years ago

hwwan80 commented 10 years ago

All the options pass to run() is not cater. The following line in index.js:

     options = merge(options || {}, defaultOptions);

should be:

     options = merge(defaultOptions, options || {});
gimm commented 10 years ago

fixed, thanks