Commit d85ed229 authored by Nick Stenning's avatar Nick Stenning Committed by Robert Knight

Correctly specify dependencies of `upload-sourcemaps` task

parent d0fe4c66
...@@ -254,7 +254,9 @@ gulp.task('test-watch-extension', function (callback) { ...@@ -254,7 +254,9 @@ gulp.task('test-watch-extension', function (callback) {
}, callback).start(); }, callback).start();
}); });
gulp.task('upload-sourcemaps', function () { gulp.task('upload-sourcemaps',
['build-app-js',
'build-extension-js'], function () {
var uploadToSentry = require('./scripts/gulp/upload-to-sentry'); var uploadToSentry = require('./scripts/gulp/upload-to-sentry');
gulp.src(['build/scripts/*.js', 'build/scripts/*.map']) gulp.src(['build/scripts/*.js', 'build/scripts/*.map'])
.pipe(uploadToSentry({ .pipe(uploadToSentry({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment