From 84511e0904e80c6a11f4a7bdbdce2e1ef0345200 Mon Sep 17 00:00:00 2001 From: Mathew Kleppin Date: Sun, 29 Nov 2015 02:19:35 -0600 Subject: [PATCH] update to include css in main bower --- README.md | 3 ++- bower.json | 7 +++++-- package.json | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3bd3195..b25291f 100644 --- a/README.md +++ b/README.md @@ -38,9 +38,10 @@ Or by downloading the repo and using the files there ``` -2. Include plugin's code: +2. Include plugin's code: (javascript and stylesheets) ```html + ``` diff --git a/bower.json b/bower.json index ca450e9..2cbc346 100644 --- a/bower.json +++ b/bower.json @@ -1,12 +1,15 @@ { "name": "LogosDistort", - "version": "0.3.7", + "version": "0.3.8", "homepage": "https://github.com/hellsan631/LogosDistort", "authors": [ "Mathew Kleppin " ], "description": "A simple Javascript plugin that uses matrix3d to perform perspective distortions.", - "main": "src/jquery.logosDistort.js", + "main": [ + "dist/jquery.logosDistort.js", + "dist/css/perspectiveRules.css" + ], "ignore": [ ".jshintrc", ".editorconfig", diff --git a/package.json b/package.json index 68f8f93..5d077f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LogosDistort", - "version": "0.3.7", + "version": "0.3.8", "scripts": { "start": "gulp serve" },