Skip to content

Commit

Permalink
fix(): fix for npm3
Browse files Browse the repository at this point in the history
npm3 uses dedup and word-warp is not in the node_modules dir from __dirname
  • Loading branch information
moperacz committed Nov 21, 2015
1 parent b412a96 commit eec3e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Inspired by: https://github.com/commitizen/cz-conventional-changelog and https://github.com/commitizen/cz-cli

var wrap = require('./node_modules/word-wrap/index');
var wrap = require('word-wrap');
var SYMLINK_CONFIG_NAME = 'cz-config';
var log = require('winston');

Expand Down

0 comments on commit eec3e6c

Please sign in to comment.