Skip to content
This repository was archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Aligned vars and removed leftover console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Elias committed Nov 26, 2014
1 parent 34f82e4 commit 620784e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions lib/tasks/docs.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

var path = require('path'),
sassdoc = require('gulp-sassdoc'),
extend = require('node.extend'),
files = require('../helpers/files');
var path = require('path');
var sassdoc = require('gulp-sassdoc');
var extend = require('node.extend');
var files = require('../helpers/files');

module.exports = function(gulp, config) {
module.exports.sassDoc(gulp, config);
Expand All @@ -16,8 +16,6 @@ module.exports.sassDoc = function(gulp, config) {
dest: path.join(src, '/docs/sass')
};

console.log(sassdocConfig);

return gulp.src(src)
.pipe(sassdoc(extend(true, {}, sassdocConfig, config)));
};
Expand Down

0 comments on commit 620784e

Please sign in to comment.