Skip to content

Commit

Permalink
v0.2.1 - Gulp file moved to common, Readme, release update
Browse files Browse the repository at this point in the history
  • Loading branch information
logeshpaul committed Apr 6, 2015
1 parent f5982da commit e7eda5f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 326 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@
[![Code Climate](https://codeclimate.com/github/FuelFrontend/generator-smacss/badges/gpa.svg)](https://codeclimate.com/github/FuelFrontend/generator-smacss)
-->

[Work In Progress] Perfectionist generator that scaffolds out different types of Frontend application
Perfectionist generator that scaffolds out different types of Frontend application

![Generator Smacss](https://raw.githubusercontent.com/FuelFrontend/generator-smacss/master/smacss-in-action.png "Generator Smacss")

![Join the chat at https://gitter.im/FuelFrontend/generator-smacss]()


# Features

Expand Down
7 changes: 6 additions & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,12 @@ smacssGenerator.prototype.copyJSFiles = function copyJSFiles() {
};

smacssGenerator.prototype.copyDependencyFiles = function copyDependencyFiles() {
this.template("_" + this.appType + "/_gulpfile.js", this.appName + "/gulpfile.js", smacssGenerator.context);
if(this.appType === 'typeFullPackWebApp' || this.appType === 'typeAngularApp') {
this.template("common/_gulpfile.js", this.appName + "/gulpfile.js", smacssGenerator.context);
}
else {
this.template("_typeSimpleWebApp/_gulpfile.js", this.appName + "/gulpfile.js", smacssGenerator.context);
}
this.template("_" + this.appType + "/_package.json", this.appName + "/package.json", smacssGenerator.context);
};

Expand Down
321 changes: 0 additions & 321 deletions app/templates/_typeFullPackWebApp/_gulpfile.js

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-smacss",
"version": "0.2.0",
"version": "0.2.1",
"description": "Perfectionist Frontend Generator",
"author": {
"name": "Logesh Paul",
Expand Down
5 changes: 5 additions & 0 deletions release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History

**v0.2.1**
- Improvements: Refactoring, Extracted Methods, Cleanup, Director structure update
- Readme file improvements and Better Favicon
- Included 404 Page

**v0.2.0**
- Two great and good to have features included
- Completely automated dependency installation, trigger local server, open the app in browser
Expand Down

0 comments on commit e7eda5f

Please # to comment.