Skip to content

Commit

Permalink
Correctly use exported case methods
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRuf committed Feb 19, 2020
1 parent 9c2f517 commit 9f2d234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.js
Expand Up @@ -27,11 +27,11 @@

'use strict';

var camelCase = require('camel-case');
var camelCase = require('camel-case').camelCase;
var fs = require('fs');
var info = require('./package.json');
var minify = require('./' + info.main).minify;
var paramCase = require('param-case');
var paramCase = require('param-case').paramCase;
var path = require('path');
var program = require('commander');

Expand Down

0 comments on commit 9f2d234

Please sign in to comment.