-
Notifications
You must be signed in to change notification settings - Fork 7
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
Fixed vendor:publish tag name #11
Conversation
Hey, @askdkc Is publishing with |
@ousid just try your code by yourself and check out what outputs your vendor:publish makes. You should see it by yourself. |
@askdkc, The published files are works just fine. This package uses Edit: Sorry, I didn't see your comment on the #8, and I didn't test Thanks for the PR, and Resolving the both issues! |
just try installing your package to newly created laravel project like this. laravel new laravelcsv
(or composer create-project laravel/laravel --prefer-dist laravelcsv)
cd laravecsv
composer require coderflex/laravel-csv
php artisan vendor:publish --tag="csv-views" And you get this: INFO No publishable resources for tag [csv-views]. You see? No publishable resources for tag [csv-views]. |
Yep, I realized it just after I see the comment in the mentioned issue above. |
@ousid But hopefully you should test it before asking questions. I kinda hate repeating myself. |
I tested all the published files except the Thanks again for your PR's and enhancing this package for the better |
@ousid Have a great day. |
When you use custom view namespace in spatie laravel-package-tools, you need to use your custom namespace for your published view's tag name. This PR is fix for that.