From 73cafd16dabfad936395af0029015ac386e4b424 Mon Sep 17 00:00:00 2001 From: Martin von Gagern Date: Mon, 9 Jan 2017 22:48:03 +0100 Subject: [PATCH] Avoid some warnings from bower Bower prefers to have package names in lower case, and to have uncompressed sources listed as entry points. Otherwise it will issue warnings. --- bower.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bower.json b/bower.json index 7c9491a0..2de94219 100644 --- a/bower.json +++ b/bower.json @@ -1,9 +1,9 @@ { - "name": "KaTeX", + "name": "katex", "version": "0.8.0-pre", "main": [ - "dist/katex.min.js", - "dist/katex.min.css" + "dist/katex.js", + "dist/katex.css" ], "homepage": "http://khan.github.io/KaTeX/", "description": "Fast math typesetting for the web.",