Closed jlyonsmith closed 10 years ago
Bit more info. If I use gulp-debug
to display the list of files returned by gulpBowerFiles
the angulartics
files are not in the list.
OK, I figured it out. I had to change the bower.json
file to contain:
"overrides": {
"angulartics": {
"main": [ "src/angulartics.js", "src/angulartics-ga.js"]
}
}
I guess I needed to understand the main
entry in bower.json
a bit better. Cheers.
! ;)
In my
bower.json
I start with:My
gulpfile.js
contains the code:Debugging output from
gulp-bower-files
is:However my
build/lib
directory does not contain abuild/lib/angulartics
directory. If I remove theangulartics
override, I get the directory with just the defaultangulartics.js
file in it.