Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
Rename Gulpfile to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
peterblazejewicz committed Jul 24, 2016
1 parent 89378c5 commit 7debf3b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -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)
Expand Down Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion app/USAGE
Expand Up @@ -16,7 +16,7 @@ Subgenerators:
yo aspnet:dockerfile [options]
yo aspnet:gitignore [options]
yo aspnet:gruntfile [options]
yo aspnet:Gulpfile [options] <name>
yo aspnet:gulpfile [options] <name>
yo aspnet:HTMLPage [options] <name>
yo aspnet:Interface [options] <name>
yo aspnet:JavaScript [options] <name>
Expand Down
2 changes: 1 addition & 1 deletion Gulpfile/USAGE → gulpfile/USAGE
Expand Up @@ -2,7 +2,7 @@ Description:
Creates a new Gulp file

Example:
yo aspnet:Gulpfile
yo aspnet:gulpfile

This will create:
gulpfile.js
File renamed without changes.
4 changes: 2 additions & 2 deletions test/subgenerators.js
Expand Up @@ -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"/);
});
Expand Down

0 comments on commit 7debf3b

Please sign in to comment.