-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More updates to the gulp subgenerator and tests
Made the subgenerator properly scaffold a gulpfile and packages now and updated the tests accordingly for the gulpfile and moved most of the small tests into a boilerplate test file. Also updated the gulpfile at the root directory to look for JS errors in the generated gulpfiles and run a singular test task so even when there are errors it will actually fail. Neat. Also updated yeoman-generator to a newer version (0.20.1) for some templating goodness.
- Loading branch information
Showing
13 changed files
with
584 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"key": "<%= amazonKey %>", | ||
"secret": "<%= amazonSecret %>", | ||
"bucket": "<%= amazonBucket %>", | ||
"region": "us-west-1", | ||
"distributionId": "<%= amazonDistID %>" | ||
"key": "AWS KEY GOES HERE", | ||
"secret": "AWS SECRET GOES HERE", | ||
"bucket": "www.example.org", | ||
"region": "us-west-1" | ||
} |
Oops, something went wrong.