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']
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']