Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
leongaban committed Feb 17, 2017
1 parent dc99d59 commit 52095e4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sass-smacss 0.2.3
# sass-smacss 0.2.4
By <a href="http://twitter.com/leongaban">@leongaban</a>

### Scalable and modular architecture for CSS https://smacss.com | http://sass-lang.com
Expand All @@ -9,6 +9,9 @@ By <a href="http://twitter.com/leongaban">@leongaban</a>
<p>SASS is a better way to write CSS, and SMACSS is the best way to organize.</p>
*******

##### New in version 0.2.4
Deprecated and obsolete HTML elements removed from reset, most default styles commented out.

##### New in version 0.2.3
<a href="http://gulpjs.com/">GulpFile</a> added (gulpfile.js should be moved to the root of your project)

Expand Down Expand Up @@ -56,7 +59,7 @@ stylesheets/
| |-- _normalize # Nicolas Gallagher v3.0.2
| ...
|
`-- main_web # Primary Sass module
`-- main # Primary Sass module
*/
@import "vendors/normalize"; // Normalize stylesheet
Expand Down
5 changes: 2 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ var gulp = require('gulp'),

// Log Errors
////////////////////////////////////////////////////////////////////////////////

function errorlog(err){
function errorlog(err) {
console.log(err.message);
this.emit('end');
}
Expand All @@ -39,7 +38,7 @@ gulp.task('css', function() {
.pipe(sourcemaps.init())
.on('error', errorlog)
.pipe(sourcemaps.write('./maps'))
.pipe(gulp.dest('css/'))
.pipe(gulp.dest('css/'));
});

/** Development watch */
Expand Down
2 changes: 1 addition & 1 deletion sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ stylesheets/
@import "modules/buttons"; // Buttons
@import "modules/layout"; // Load Layouts
@import "modules/svg"; // Load SVG
@import "modules/queries"; // Media Queries
@import "modules/queries"; // Media Queries

0 comments on commit 52095e4

Please sign in to comment.