bower.json - The files listed under the main key are wrong #2740
mpetkov
commented
DatTran
commented
Also bower pulls in the SASS file instead of the css.
"main": [
"src/js/video.js",
"src/css/video-js.scss"
],
Should be:
"main": [
"dist/video-js.js",
"dist/video-js.css"
],
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried installing the component using the Main Bower gulp plugin in my project. This plugin is supposed to copy only the files listed in the main key that are the only files needed to run the module. Well right now the listed files are the ones in src however it should have a list of the dist files.