Skip to content

Commit a399671

Browse files
committed
Lintify
1 parent 41be06f commit a399671

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tasks/bundle.js

-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,3 @@ constants.partialBundlePaths.forEach(function(pathObj) {
5454
pathToMinBundle: pathObj.distMin
5555
});
5656
});
57-

tasks/util/browserify_wrapper.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ module.exports = function _bundle(pathToIndex, pathToBundle, opts) {
4949

5050
b.transform(bubleify, constants.bubleifyOptions);
5151

52-
var bundleStream = b.bundle(function(err, buf) {
52+
var bundleStream = b.bundle(function(err) {
5353
if(err) throw err;
54-
})
54+
});
5555

56-
if (outputMinified) {
56+
if(outputMinified) {
5757
bundleStream
5858
.pipe(minify(constants.uglifyOptions))
5959
.pipe(fs.createWriteStream(pathToMinBundle))

0 commit comments

Comments
 (0)