From 0596a05f4df34c866baa9ce3ddf7047cd24a4b0a Mon Sep 17 00:00:00 2001 From: Robin Whittleton Date: Thu, 7 Sep 2017 11:58:17 +0200 Subject: [PATCH] Offer the unminified package by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While the minified package is useful for developers who just want to get started quickly and download the package, I’d imagine that most people pulling the package in via NPM or equivalent will have their own minification setup. In this case it doesn’t save time and makes it harder to debug the library. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 75392eb..f610521 100755 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "validate", "version": "1.0.5", "description": "A lightweight form validation script that augments native HTML5 form validation elements and attributes.", - "main": "./dist/js/validate.min.js", + "main": "./dist/js/validate.js", "author": { "name": "Chris Ferdinandi", "url": "http://gomakethings.com"