From 00dec75364e6cca0f4479360a93df752538a3ef5 Mon Sep 17 00:00:00 2001 From: danikaze Date: Sat, 11 Jan 2020 02:54:46 +0900 Subject: [PATCH] Make vendor/tng to use local lib/colors --- vendor/tng.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/tng.js b/vendor/tng.js index 731ef6c..09c4fab 100644 --- a/vendor/tng.js +++ b/vendor/tng.js @@ -29,7 +29,7 @@ function PNG(file, options) { if (!file) throw new Error('no file'); 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.speed = this.options.speed || 1;