diff --git a/README.md b/README.md index 5ab4f046..b27b7754 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ The alphabetic list of available sub generators (_to create files after the proj * [aspnet:dockerfile](#dockerfile) * [aspnet:gitignore](#gitignore) * [aspnet:gruntfile](#gruntfile) -* [aspnet:Gulpfile](#gulpfile) +* [aspnet:gulpfile](#gulpfile) * [aspnet:HTMLPage](#htmlpage) * [aspnet:Interface](#interface) * [aspnet:JavaScript](#javascript) @@ -306,14 +306,14 @@ Produces `Gruntfile.js` [Return to top](#top) -### Gulpfile +### gulpfile Creates a new Gulp file Example: ``` -yo aspnet:Gulpfile +yo aspnet:gulpfile ``` Produces `gulpfile.js` diff --git a/app/USAGE b/app/USAGE index fb0c5a1a..c98df706 100644 --- a/app/USAGE +++ b/app/USAGE @@ -16,7 +16,7 @@ Subgenerators: yo aspnet:dockerfile [options] yo aspnet:gitignore [options] yo aspnet:gruntfile [options] - yo aspnet:Gulpfile [options] + yo aspnet:gulpfile [options] yo aspnet:HTMLPage [options] yo aspnet:Interface [options] yo aspnet:JavaScript [options] diff --git a/Gulpfile/USAGE b/gulpfile/USAGE similarity index 80% rename from Gulpfile/USAGE rename to gulpfile/USAGE index dec011fc..4b91c5bc 100644 --- a/Gulpfile/USAGE +++ b/gulpfile/USAGE @@ -2,7 +2,7 @@ Description: Creates a new Gulp file Example: - yo aspnet:Gulpfile + yo aspnet:gulpfile This will create: gulpfile.js diff --git a/Gulpfile/index.js b/gulpfile/index.js similarity index 100% rename from Gulpfile/index.js rename to gulpfile/index.js diff --git a/test/subgenerators.js b/test/subgenerators.js index cb90178d..1bb746b1 100644 --- a/test/subgenerators.js +++ b/test/subgenerators.js @@ -27,8 +27,8 @@ describe('Subgenerators without arguments tests', function() { util.fileCheck('should create Program.cs file', 'Program.cs'); }); - describe('aspnet:Gulpfile', function() { - util.goCreate('Gulpfile'); + describe('aspnet:gulpfile', function() { + util.goCreate('gulpfile'); util.fileCheck('should create gulp file', 'gulpfile.js'); util.fileContentCheck('gulpfile.js', 'file content check', /gulp\.task\("default"/); });