From c10c55841f4c8f21bd8e2f09bfca3e69fb265285 Mon Sep 17 00:00:00 2001 From: Sameer Bhadouria Date: Tue, 22 Sep 2015 12:22:31 -0700 Subject: [PATCH 1/3] Added the missing typeahead files to components.json --- component.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/component.json b/component.json index 49c5053..44b448f 100644 --- a/component.json +++ b/component.json @@ -4,10 +4,13 @@ "version": "0.10.5", "main": "typeahead.js", "scripts": [ - "typeahead.js" + "typeahead.bundle.min.js" ], "files": [ - "typeahead.bundle.min.js" + "typeahead.bundle.js", + "typeahead.bundle.min.js", + "typeahead.jquery.js", + "typeahead.jquery.min.js" ], "license": "MIT" } From 1926b2cde237d8544644491db6b98bd2ace58367 Mon Sep 17 00:00:00 2001 From: Sameer Bhadouria Date: Wed, 23 Sep 2015 12:14:01 -0700 Subject: [PATCH 2/3] corrected the main file name --- component.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component.json b/component.json index 44b448f..c41858d 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "typeaheadjs", "repo": "components/typeahead.js", "version": "0.10.5", - "main": "typeahead.js", + "main": "typeahead.bundle.min.js", "scripts": [ "typeahead.bundle.min.js" ], From ff04ec90d537bdbc3d49c7a87cdfa1db68a0c880 Mon Sep 17 00:00:00 2001 From: Sameer Bhadouria Date: Wed, 23 Sep 2015 15:13:19 -0700 Subject: [PATCH 3/3] Added jquery as a dependency --- component.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/component.json b/component.json index c41858d..798af47 100644 --- a/component.json +++ b/component.json @@ -12,5 +12,8 @@ "typeahead.jquery.js", "typeahead.jquery.min.js" ], - "license": "MIT" + "license": "MIT", + "dependencies": { + "components/jquery": "*" + } }