Skip to content

Commit

Permalink
Merge pull request #64 from diggyk/master
Browse files Browse the repository at this point in the history
Migrated to LESS and fixed a minor bug
  • Loading branch information
mcot2 committed Oct 4, 2015
2 parents acc79d7 + 585d69c commit 22cc9a4
Show file tree
Hide file tree
Showing 4 changed files with 720 additions and 2 deletions.
5 changes: 4 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var VENDOR_ROOT = "./_bc/";

var JS_MAIN_SRC = SRC_ROOT + 'js/hermesApp.js';
var JS_SRC = SRC_ROOT + 'js/**/*.js';
var STYLE_SRC = SRC_ROOT + 'css/**/*.css';
var STYLE_SRC = SRC_ROOT + 'css/**/*.less';
var IMAGE_SRC = SRC_ROOT + 'img/**';
var HTML_SRC = SRC_ROOT + "**/*.html";

Expand Down Expand Up @@ -106,6 +106,9 @@ gulp.task('build:html', function() {
*/
gulp.task('build:style', function() {
return gulp.src(STYLE_SRC)
.pipe(less({
paths: [ path.join(__dirname, 'less', 'includes') ]
}))
.pipe(sort())
.pipe(concat('hermes.css'))
.pipe(gulp.dest((BUILD_DEST + 'css')))
Expand Down
2 changes: 1 addition & 1 deletion hermes/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.12"
__version__ = "0.4.13"

0 comments on commit 22cc9a4

Please sign in to comment.