From 4c0acf5512829ef6e945aec4dbb77b628ab519de Mon Sep 17 00:00:00 2001 From: John Date: Fri, 12 Aug 2016 06:47:39 -0700 Subject: [PATCH] package.json wasn't pointing to right 'main' file Fixed an issue that prevented this npm from working as a nodemodule because "main" property in package.json was not pointing to correct file. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ad7f2c4..5a705ac 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "materialize-clockpicker", "version": "1.0.1", "description": "A materialize clockpicker", - "main": "js/materialize.clockpicker.js", + "main": "./dist/js/materialize.clockpicker.js", "repository": { "type": "git", "url": "git@github.com:chingyawhao/materialize-clockpicker.git"