vite_ruby 3.8.3 → 3.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/vite_ruby/config.rb +4 -8
- data/lib/vite_ruby/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6d195ba87cc25c1098d580e26daa815376c2ffa8284fd340d2e8c270eaee3c2
|
|
4
|
+
data.tar.gz: b4827120c13dc8560d1cc37db4fcd920860222a902d8ed517696c2c73b08afa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07a8c725a6e0b2b056b6cf3ff9779b488c52ce23f568c2b59c013d28a3fb75afd18cf60e3926bc78034d491aa0b6de4d9b9651413bda951f128fed523e9c67dc
|
|
7
|
+
data.tar.gz: bbe4e86443cd0caa9bf51a0b0670e8e2350887d6069b52c48d9b2a47574a7b673112c7e0eb73331631b5c4b030351414c6a9fee8ce164a0d01dd9433ce30b025
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# [3.9.0](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.8.3...vite_ruby@3.9.0) (2024-10-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* enforce vite 5 manifest location ([#432](https://github.com/ElMassimo/vite_ruby/issues/432)) ([ce2df58](https://github.com/ElMassimo/vite_ruby/commit/ce2df5859018b3e305fc1a13443199d268dffca8)), closes [/github.com/ElMassimo/vite_ruby/blob/main/vite_ruby/lib/vite_ruby/builder.rb#L16](https://github.com//github.com/ElMassimo/vite_ruby/blob/main/vite_ruby/lib/vite_ruby/builder.rb/issues/L16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
## [3.8.3](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.8.2...vite_ruby@3.8.3) (2024-10-11)
|
|
2
11
|
|
|
3
12
|
|
data/lib/vite_ruby/config.rb
CHANGED
|
@@ -21,15 +21,11 @@ class ViteRuby::Config
|
|
|
21
21
|
def known_manifest_paths
|
|
22
22
|
[
|
|
23
23
|
# NOTE: Generated by Vite when `manifest: true`, which vite-plugin-ruby enables.
|
|
24
|
-
'manifest.json',
|
|
24
|
+
build_output_dir.join('.vite/manifest.json'),
|
|
25
|
+
|
|
25
26
|
# NOTE: Path where vite-plugin-ruby outputs the assets manifest file.
|
|
26
|
-
'manifest-assets.json',
|
|
27
|
-
]
|
|
28
|
-
[
|
|
29
|
-
build_output_dir.join(".vite/#{ path }"), # Vite 5 onwards
|
|
30
|
-
build_output_dir.join(path), # Vite 4 and below
|
|
31
|
-
]
|
|
32
|
-
}
|
|
27
|
+
build_output_dir.join('.vite/manifest-assets.json'),
|
|
28
|
+
]
|
|
33
29
|
end
|
|
34
30
|
|
|
35
31
|
# Internal: Path to the manifest files generated by Vite and vite-plugin-ruby.
|
data/lib/vite_ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vite_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Máximo Mussini
|
|
@@ -222,8 +222,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
|
|
|
222
222
|
licenses:
|
|
223
223
|
- MIT
|
|
224
224
|
metadata:
|
|
225
|
-
source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.
|
|
226
|
-
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.
|
|
225
|
+
source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.9.0/vite_ruby
|
|
226
|
+
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.9.0/vite_ruby/CHANGELOG.md
|
|
227
227
|
post_install_message: "Thanks for installing Vite Ruby!\n\nIf you upgraded the gem
|
|
228
228
|
manually, please run:\n\tbundle exec vite upgrade"
|
|
229
229
|
rdoc_options: []
|