-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not copying sub folders/files #115
Comments
I think I'm getting the same too, with the config from the read me, installs bower components and they don't get moved to targetDir, just sit in default /app/bower_components/
|
I think I am also getting this with Bootflat...
But when I look into the directory none of these files are present. |
I realise this is an old-ish issue, but might be worth mentioning that this issue might have to do with the library/project's bower.json specifying only 1 file as the main file as I got this in a couple of libraries also and noticed they all only list 1 main file. This seems to be the case with Susy anyway when I made a quick check. Simplest solution I found was to use what was specified in the Advanced Usage section. |
This also affects // Doesn't work as intended
"exportsOverride": {
"bootstrap": {
"/": "dist/**/*"
}
} I was able to work around this issue by copying the whole folder rather than doing wildcards: // Works
"exportsOverride": {
"bootstrap": {
"/": "dist/"
}
} |
For some reason, when I run 'grunt bower', for some dependencies, it doesn't copy everything over. For example, 'susy' -- the compass plugin. In that instance it just copies one file which tries to link to more in the subfolders which aren't there.
Here's my code:
Is this a bug or am I missing something?
The text was updated successfully, but these errors were encountered: