Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: enforce vite 5 manifest location (#432)
This should have shipped along `3.5.0`, when we started enforcing: ```json "vite": "~>5.0.0" ``` That means `3.5.0` would fail early if used with vite 4, prompting users to run `bin/vite upgrade`, which would install vite 5. Any deployment that switches from vite 4 to vite 5 would modify `package.json`, so the [last build would be stale](https://github.com/ElMassimo/vite_ruby/blob/main/vite_ruby/lib/vite_ruby/builder.rb#L16), making it safe to assume the manifests will always be in the new location. --------- Co-authored-by: Maximo Mussini <[email protected]>
- Loading branch information