From a1f709ef628b4b294f60142de294c5b81fdc9904 Mon Sep 17 00:00:00 2001 From: Hoang Nguyen Date: Sat, 7 Jun 2025 00:31:21 +0700 Subject: [PATCH] Remove references to description configuration property --- README.md | 1 - test/expected/config/output0.txt | 2 -- test/expected/config/output1.txt | 2 -- test/expected/config/output2.txt | 2 -- test/fixtures/config/foo/bar/.gulp.js | 3 --- test/fixtures/config/foo/bar/baz/.gitkeep | 0 test/fixtures/config/foo/bar/gulpfile.js | 7 ------- test/fixtures/config/foo/bar/quux/.gulp.babel.js | 1 - test/fixtures/config/qux/.gulp.js | 5 ----- 9 files changed, 23 deletions(-) delete mode 100644 test/expected/config/output0.txt delete mode 100644 test/expected/config/output1.txt delete mode 100644 test/expected/config/output2.txt delete mode 100644 test/fixtures/config/foo/bar/.gulp.js delete mode 100644 test/fixtures/config/foo/bar/baz/.gitkeep delete mode 100644 test/fixtures/config/foo/bar/gulpfile.js delete mode 100644 test/fixtures/config/foo/bar/quux/.gulp.babel.js delete mode 100644 test/fixtures/config/qux/.gulp.js 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', -};