Merge pull request #41 from danikaze/local-import
Make vendor/tng to use local lib/colors
This commit is contained in:
commit
fa63a5db0e
|
@ -29,7 +29,7 @@ function PNG(file, options) {
|
||||||
if (!file) throw new Error('no file');
|
if (!file) throw new Error('no file');
|
||||||
|
|
||||||
this.options = options || {};
|
this.options = options || {};
|
||||||
this.colors = options.colors || require('blessed/lib/colors');
|
this.colors = options.colors || require('../lib/colors');
|
||||||
this.optimization = this.options.optimization || 'mem';
|
this.optimization = this.options.optimization || 'mem';
|
||||||
this.speed = this.options.speed || 1;
|
this.speed = this.options.speed || 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue