I am fetching requirejs with the command bower install requirejs ---save
and this is resulting in a requirejs folder being added to my components folder, but within it the require.js file (and all other files) is not there. The only file added is a .bower.json
file. I assume that I must be misunderstanding something. When I grab other packages through bower (like angular and angularAMD) I get the javascript content, but not for require. What gives?
bower.json file below
{
"dependencies": {
"angular": "latest",
"requirejs": "latest",
"angularAMD": "latest"
},
"resolutions": {
"angular": "1.5.8"
}
}
and .bowerrc
{
"directory": "bower_components/lib"
}
Also of note is that I installed bower through nuget, which added a .bin folder to the project with the following files in it bower.cmd, git.cmd, and node.cmd. I believe these are mini instanced of git and node to use for fetching, I assume the problem lies somewhere with these as they are the only real difference between intellij and visual studio.