Skip to content

Commit

Permalink
Update version and fix stupid order bug Semantic-Org#3440
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Dec 19, 2015
1 parent 7b364b4 commit f9cb697
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui",
"version": "2.1.6",
"version": "2.1.7",
"title": "Semantic UI",
"description": "Semantic empowers designers and developers by creating a shared vocabulary for UI.",
"homepage": "http://www.semantic-ui.com",
Expand Down
18 changes: 9 additions & 9 deletions tasks/build/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ var
tasks = require('../config/tasks'),
install = require('../config/project/install'),

maybeCallback = function() {
tasksCompleted++;
if(tasksCompleted === 2) {
callback();
}
},

// shorthand
globs = config.globs,
assets = config.paths.assets,
Expand All @@ -53,10 +46,17 @@ require('../collections/internal')(gulp);
module.exports = function(callback) {

var
tasksCompleted = 0,
maybeCallback = function() {
tasksCompleted++;
if(tasksCompleted === 2) {
callback();
}
},

stream,
compressedStream,
uncompressedStream,
tasksCompleted = 0
uncompressedStream
;

console.info('Building CSS');
Expand Down

0 comments on commit f9cb697

Please sign in to comment.