-
Notifications
You must be signed in to change notification settings - Fork 4
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
This package should not manage assets, maybe? #2
Comments
I have 2 themes now that use bower/grunt combination. I use the So it's possible to not use all the dependency management and compilation provided by the package its asset class. An example of methods you will want to use in your theme if you aren't using it's compilation features: {!! Asset::script('something::bootbox/bootbox.js') !!}
<!-- Get the URL -->
{!! Asset::url('something::bootbox/bootbox.js') !!}
<!-- Get the URI -->
{!! Asset::uri('something::bootbox/bootbox.js') !!} If these methods aren't provided by the package, it would be a pain to resolve all paths. Hopefully this example was clear enough. I'll let this issue open until i've updated the documentation which will provide further clarification on the asset aspect of the package and discuss it from there on out. |
I have started to collaborate with another developer on several packages. Laradic/Themes has been merged into Basic asset filesystem and url path resolving is the only asset related thing that still remains in the new Caffeinated\Themes package. Laradic\Themes will be dropped |
Nice. I'm willing to migrate to this package but it seems that you need to use |
You are looking at the wrong branch. I guess you looked over the So check the v3 branch. :) It will be merged into the master branch soon. |
Okay great, switched to your new package. |
for now the only way to use the package is to Remember that the package is in development and should be treated as such. There will be an official release coming in ~1 week. |
Many of laravel developers like me use Elixir or Gulp or Grunt instead of PHP for assets management & compilation.
The text was updated successfully, but these errors were encountered: