Skip to content

Commit

Permalink
Merge pull request #654 from kangax/issue-653
Browse files Browse the repository at this point in the history
workaround require() bug for Node.js 0.10
  • Loading branch information
alexlamsl committed May 2, 2016
2 parents 7a4db8e + c599176 commit 4b0d03f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Expand Up @@ -30,7 +30,7 @@
var changeCase = require('change-case');
var fs = require('fs');
var info = require('./package.json');
var minify = require('.').minify;
var minify = require('./' + info.main).minify;
var path = require('path');
var program = require('commander');

Expand Down

0 comments on commit 4b0d03f

Please sign in to comment.