diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 8f553a16a5232..0000000000000 --- a/gulpfile.js +++ /dev/null @@ -1,17 +0,0 @@ -/* - gulpfile.js - =========== - Rather than manage one giant configuration file responsible - for creating multiple tasks, each task has been broken out into - its own file in gulp/tasks. Any files in that directory get - automatically required below. - - To add a new task, simply add a new task file that directory. - gulp/tasks/default.js specifies the default set of tasks to run - when you run `gulp`. -*/ - -var requireDir = require('require-dir'); - -// Require all tasks in gulp/tasks, including subfolders -requireDir('./scripts/tasks', { recurse: true }); diff --git a/package.json b/package.json index ba983254d4473..116ca2bedaa43 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,6 @@ "description": "New Nodejs.org website", "homepage": "https://new.nodejs.org", "scripts": { - "gulp": "gulp", "build": "node build.js", "serve": "node build.js serve", "lint": "eslint scripts build.js", @@ -27,7 +26,6 @@ "dependencies": { "autoprefixer-stylus": "^0.7.1", "chokidar": "^1.0.5", - "gulp": "^3.9.0", "handlebars": "^3.0.0", "map-async": "~0.1.1", "metalsmith": "^2.0.0", diff --git a/scripts/tasks/build.js b/scripts/tasks/build.js deleted file mode 100644 index fff09b6807090..0000000000000 --- a/scripts/tasks/build.js +++ /dev/null @@ -1,6 +0,0 @@ -var gulp = require('gulp'); - -gulp.task('build', function (cb) { - console.log('Placeholder. Nothing to do.'); - cb(); -});