Skip to content

Commit

Permalink
Move uglify include past conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
kpdecker committed Aug 26, 2014
1 parent b414590 commit c98147b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/precompiler.js
@@ -1,6 +1,5 @@
/*global shouldThrow */

var uglify = require('uglify-js');

describe('precompiler', function() {
// NOP Under non-node environments
Expand All @@ -9,7 +8,8 @@ describe('precompiler', function() {
}

var Handlebars = require('../lib'),
Precompiler = require('../lib/precompiler');
Precompiler = require('../lib/precompiler'),
uglify = require('uglify-js');

var log,
logFunction,
Expand Down

0 comments on commit c98147b

Please sign in to comment.