Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDancingCode authored and demurgos committed Apr 8, 2018
1 parent 428393b commit f668318
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
var through = require('through2');
var applySourceMap = require('vinyl-sourcemaps-apply');
var path = require('path');
var replaceExt = require('replace-ext');
var PluginError = require('plugin-error');

Expand Down
3 changes: 1 addition & 2 deletions test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ var coffeescript = require('coffeescript');
var fs = require('fs');
var path = require('path');
var sourcemaps = require('gulp-sourcemaps');
var stream = require('stream');
var File = require('vinyl');
require('mocha');

Expand Down Expand Up @@ -79,7 +78,7 @@ describe('gulp-coffee', function() {
err.message.should.equal('unexpected then');
done();
})
.on('data', function(newFile) {
.on('data', function() {
throw new Error('no file should have been emitted!');
})
.write(createFile(filepath, contents));
Expand Down

0 comments on commit f668318

Please sign in to comment.