You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a bug when I create a new application via yeoman bower and grunt and install your plug via bower.json like "thumbnail-scroller": "malihu/thumbnail-scroller#^2.0.0". So the bug is when I build my app via grunt - there are no <link rel="stylesheet" href="../bower_components/thumbnail-scroller/jquery.mThumbnailScroller.css" /> and <script src="../bower_components/thumbnail-scroller/jquery.mThumbnailScroller.js"> in the index.html. I digged out that is because of no "main": [
"jquery.mThumbnailScroller.css",
"jquery.mThumbnailScroller.js"
]
in your bower.json file. When I temporary add it, all works fine. So could you be so kind to fix it?
Hi friend. Let me thanks you for the great job.
I found a bug when I create a new application via yeoman bower and grunt and install your plug via bower.json like "thumbnail-scroller": "malihu/thumbnail-scroller#^2.0.0". So the bug is when I build my app via grunt - there are no <link rel="stylesheet" href="../bower_components/thumbnail-scroller/jquery.mThumbnailScroller.css" /> and <script src="../bower_components/thumbnail-scroller/jquery.mThumbnailScroller.js"> in the index.html. I digged out that is because of no
"main": [
"jquery.mThumbnailScroller.css",
"jquery.mThumbnailScroller.js"
]
in your bower.json file. When I temporary add it, all works fine. So could you be so kind to fix it?
My final version of .bower.json is:
{
"name": "thumbnail-scroller",
"homepage": "https://github.com/malihu/thumbnail-scroller",
"version": "2.0.2",
"_release": "2.0.2",
"_resolution": {
"type": "version",
"tag": "2.0.2",
"commit": "15343a06fef8d92c5f5f72aa72a6a62073caa68e"
},
"_source": "git://github.com/malihu/thumbnail-scroller.git",
"_target": "^2.0.0",
"_originalSource": "malihu/thumbnail-scroller",
"main": [
"jquery.mThumbnailScroller.css",
"jquery.mThumbnailScroller.js"
]
}
The text was updated successfully, but these errors were encountered: