From e0f656f312e4cbd85a8cbad20c654402e00dca8f Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Wed, 24 Mar 2021 17:11:20 -0700 Subject: [PATCH] gulpfile: Remove reference to missing test task MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The task was removed in 4d60cccd5ec10ac9f68c87025d17f89a4efbbfd8, causing this error: $ npx gulp [17:21:24] Using gulpfile ~/js/stacktrace.js/gulpfile.js [17:21:24] Starting 'clean'... [17:21:24] Finished 'clean' after 4.59 ms [17:21:24] Starting 'default'... [17:21:24] 'default' errored after 436 μs [17:21:24] Error: Task test is not configured as a task on gulp. If this is a submodule, you may need to use require('run-sequence').use(gulp). at /home/anders/js/stacktrace.js/node_modules/run-sequence/index.js:20:10 at Array.forEach () at verifyTaskSets (/home/anders/js/stacktrace.js/node_modules/run-sequence/index.js:13:11) at runSequence (/home/anders/js/stacktrace.js/node_modules/run-sequence/index.js:92:2) at Gulp. (/home/anders/js/stacktrace.js/gulpfile.js:53:5) at module.exports (/home/anders/js/stacktrace.js/node_modules/orchestrator/lib/runTask.js:34:7) at Gulp.Orchestrator._runTask (/home/anders/js/stacktrace.js/node_modules/orchestrator/index.js:273:3) at Gulp.Orchestrator._runStep (/home/anders/js/stacktrace.js/node_modules/orchestrator/index.js:214:10) at /home/anders/js/stacktrace.js/node_modules/orchestrator/index.js:279:18 at finish (/home/anders/js/stacktrace.js/node_modules/orchestrator/lib/runTask.js:21:8) Signed-off-by: Anders Kaseorg --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 10d7449..d46d841 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,5 +50,5 @@ gulp.task('dist', function() { gulp.task('clean', del.bind(null, ['build', 'dist'])); gulp.task('default', ['clean'], function(cb) { - runSequence('dist', 'test', cb); + runSequence('dist', cb); });