mrmarkfrench / country-select-js

A quick jQuery-based country picker based on https://github.com/Bluefieldscom/intl-tel-input.git
MIT License
282 stars 105 forks source link

Change gulp to use run-sequence #63

Closed qhieu45 closed 6 years ago

qhieu45 commented 6 years ago

Related to issue #50 , it happens because running gulp build might result in task ['js'] not run successfully. This problem is likely due to the minify-js was run asynchronously and it requires the original file in build folder. Therefore, it prevents the ['js'] task from overwriting with new file from src folder.

I added package run-sequence to make sure that ['handle-sources'] is run before ['minify-sources']

mrmarkfrench commented 6 years ago

Thank you for your contribution!