You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bug #51 Builds cache keys are improperly composed (webhdx, weaverryan)
This PR was squashed before being merged into the master branch (closes#51).
Discussion
----------
Builds cache keys are improperly composed
Looks like ba327cd has an issue with `builds` configuration. I have my app configures to use multiple builds:
```yaml
webpack_encore:
output_path: "%kernel.project_dir%/web/assets/build"
builds:
custom_build: "%kernel.project_dir%/web/assets/custom_build/build"
```
which was failing on `cache:clear`:
```
In EntrypointLookup.php line 111:
[InvalidArgumentException]
There was a problem JSON decoding the "/Users/maciejkobus/Projects/ezplatform/web/assets/custom_build/build" file
```
To my understanding it is trying to parse directory as a JSON and indeed it looks like cache keys are improperly combined in the Extension class.
Commits
-------
7f6e111 Merge branch 'master' into multiple_builds_cache_keys
b22f685 Fixed issue with invalid cache keys for builds
0 commit comments