-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Custom Bower components directory #1362
Comments
this was fixed with version 8.0.1, see #1351 and https://discourse.roots.io/t/modernizr-added-to-dist-js-main-js-and-still-called-from-assets-php-as-dist-js-modernizr-js/2975 |
I am using version 8.0.1. After some debugging I've discovered that the problem occurs because I've changed Bower's package directory in |
@saulfautley mainBowerFiles, which is used by asset-builder as a dependency, behaves a little weird in this situation and doesn't respect your bowerrc changes. I added an option to overcome this. If you want to change the directory, in your gulpfile use asset-builder as such: var manifest = require('asset-builder')('./assets/manifest.json', {
paths: {
bowerDirectory: 'assets/vendor'
}
}); |
@austinpray I've tried that but it doesn't seem to work. Looking through the code of asset-builder it seems that |
@saulfautley oh yeah you are right. I manually check for bower_components to fix some corner case with jquery plugin naming. It definitely needs to be way more clever than that. I'll get around to fixing it but patches definitely welcome! |
dist/scripts/modernizr.js
Not Found
closing this here since it's being addressed upstream austinpray/asset-builder#22 |
It looks like
lib/assets.php
is trying to enqueuedist/scripts/modernizr.js
although it doesn't exist. It does however seem like it's being included indist/scripts/main.js
, so enqueuing it is redundant anyway.I've fixed this temporarily by commenting out the line
wp_enqueue_script('modernizr', ...
inlib/assets.php
and modernizr seems to be triggering just fine without it.The text was updated successfully, but these errors were encountered: