diff --git a/README.md b/README.md index bfb6c6d1..ca9a778c 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,6 @@ Supported configurations properties: | Property | Description | |--------------------|-------------| -| description | Top-level description of the project/gulpfile (Replaces "Tasks for ~/path/of/gulpfile.js") | | gulpfile | Set a default gulpfile | | preload | An array of modules to preload before running the gulpfile. Any relative paths will be resolved against the `--cwd` directory (if you don't want that behavior, use absolute paths) | | nodeFlags | An array of flags used to forcibly respawn the process upon startup. For example, if you always want your gulpfiles to run in node's harmony mode, you can set `--harmony` here | diff --git a/test/expected/config/output0.txt b/test/expected/config/output0.txt deleted file mode 100644 index 0ce27694..00000000 --- a/test/expected/config/output0.txt +++ /dev/null @@ -1,2 +0,0 @@ -Description by .gulp.json in directory foo/bar -└── default diff --git a/test/expected/config/output1.txt b/test/expected/config/output1.txt deleted file mode 100644 index ad72767c..00000000 --- a/test/expected/config/output1.txt +++ /dev/null @@ -1,2 +0,0 @@ -description by .gulp.js in directory qux -└── default diff --git a/test/expected/config/output2.txt b/test/expected/config/output2.txt deleted file mode 100644 index a0d45083..00000000 --- a/test/expected/config/output2.txt +++ /dev/null @@ -1,2 +0,0 @@ -DESCRIPTION BY .gulp.babel.js in directory foo/bar/quux -└── default diff --git a/test/fixtures/config/foo/bar/.gulp.js b/test/fixtures/config/foo/bar/.gulp.js deleted file mode 100644 index 4c3e35e7..00000000 --- a/test/fixtures/config/foo/bar/.gulp.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - description: "Description by .gulp.json in directory foo/bar" -}; diff --git a/test/fixtures/config/foo/bar/baz/.gitkeep b/test/fixtures/config/foo/bar/baz/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/test/fixtures/config/foo/bar/gulpfile.js b/test/fixtures/config/foo/bar/gulpfile.js deleted file mode 100644 index 42466b03..00000000 --- a/test/fixtures/config/foo/bar/gulpfile.js +++ /dev/null @@ -1,7 +0,0 @@ -'use strict'; - -var gulp = require('gulp'); - -gulp.task('default', function(done) { - done(); -}); diff --git a/test/fixtures/config/foo/bar/quux/.gulp.babel.js b/test/fixtures/config/foo/bar/quux/.gulp.babel.js deleted file mode 100644 index 92986942..00000000 --- a/test/fixtures/config/foo/bar/quux/.gulp.babel.js +++ /dev/null @@ -1 +0,0 @@ -exports.description = 'DESCRIPTION BY .gulp.babel.js in directory foo/bar/quux' diff --git a/test/fixtures/config/qux/.gulp.js b/test/fixtures/config/qux/.gulp.js deleted file mode 100644 index 5af0785a..00000000 --- a/test/fixtures/config/qux/.gulp.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; - -module.exports = { - description: 'description by .gulp.js in directory qux', -};