From ece445893d6bcf561a3f2c8fdf49695e90feb460 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 23 Jan 2014 10:30:30 +0200 Subject: [PATCH] Use the minified all.js file. --- index.html | 2 +- tests/index.html | 2 +- tests/lint-tests.html | 2 +- tests/lint.js | 4 ++-- tests/minifier.js | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index ee6f0d5..1156d0a 100644 --- a/index.html +++ b/index.html @@ -177,7 +177,7 @@ Source and bugtracker are hosted on Github.

- + diff --git a/tests/index.html b/tests/index.html index 2a14159..c0596de 100644 --- a/tests/index.html +++ b/tests/index.html @@ -5,7 +5,7 @@ HTML Minifier Tests - + diff --git a/tests/lint-tests.html b/tests/lint-tests.html index b654624..ff02474 100644 --- a/tests/lint-tests.html +++ b/tests/lint-tests.html @@ -5,7 +5,7 @@ HTML Lint Tests - +

HTML Lint

diff --git a/tests/lint.js b/tests/lint.js index 2ef0ccd..95c3ef8 100644 --- a/tests/lint.js +++ b/tests/lint.js @@ -1,7 +1,7 @@ (function(global){ - var minify = global.minify || require('../dist/all.js').minify, - HTMLLint = HTMLLint || require('../dist/all.js').HTMLLint, + var minify = global.minify || require('../dist/all.min.js').minify, + HTMLLint = HTMLLint || require('../dist/all.min.js').HTMLLint, input, output, lint = new HTMLLint(); diff --git a/tests/minifier.js b/tests/minifier.js index 93eca6c..ea5dc3c 100644 --- a/tests/minifier.js +++ b/tests/minifier.js @@ -1,6 +1,6 @@ (function(global){ - var minify = global.minify || require('../dist/all.js').minify, + var minify = global.minify || require('../dist/all.min.js').minify, input, output; -- 2.34.1