From 51b8c59d6a4dcba48a3b0efcc7ef78bef4c44926 Mon Sep 17 00:00:00 2001 From: Will Bastian Date: Fri, 10 Feb 2017 13:46:53 -0500 Subject: [PATCH] Updating bower.json to reference non-minified file The minified version of plotly.min.js results in grunt-contrib-uglify hanging when it hits the file (https://github.com/gruntjs/grunt-contrib-uglify/issues/233) Best practices captured at https://github.com/bower/bower/issues/393e specify that the main bower file should point to unminified files. --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 375fcd41263..faebcafa089 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "plotly.js", "description": "The open source javascript graphing library that powers plotly", - "main": "./dist/plotly.min.js", + "main": "./dist/plotly.js", "authors": [ "Plotly, Inc." ],