phpmyadmin / scripts

Various scripts related to project
15 stars 19 forks source link

Composer/Packagist: no css for all themes for phpmyadmin 5.0.0 #21

Closed Jay04653 closed 4 years ago

Jay04653 commented 4 years ago

Describe the bug

CSS folders for all themes are empty after loading project via composer. composer clearcache does not help.

To Reproduce

Steps to reproduce the behavior:

  1. composer create-project phpmyadmin/phpmyadmin --no-dev
  2. themes/metro/css, themes/original/css and themes/pmahomme/css folders are empty

Server configuration

williamdes commented 4 years ago

https://github.com/phpmyadmin/scripts/blob/8b500ea383289f7a0f5812578fdff2f9b33bf583/website/daily-composer#L112

I think we could add the CSS generation here

williamdes commented 4 years ago

Thank you for the report @Jay04653

williamdes commented 4 years ago

I added the following lines on my local script

yarn
git add --force themes/*/css/*.css
git add --force themes/*/css/*.css.map
ibennetch commented 4 years ago

I believe I have fixed this, please reopen the issue if you still have this problem.

Thank you for reporting it!

Jay04653 commented 4 years ago

Yes, it's working now, thank you!