vite_ruby 3.8.3 → 3.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09fd7e3c2f393a6a0b6db2fae56e366c29e7bb6a91c95428775eb6d452966f4f'
4
- data.tar.gz: 77a546baec0fbb12d3fa6ff82b02feed2786cf839447b3702b6863343589ed83
3
+ metadata.gz: e6d195ba87cc25c1098d580e26daa815376c2ffa8284fd340d2e8c270eaee3c2
4
+ data.tar.gz: b4827120c13dc8560d1cc37db4fcd920860222a902d8ed517696c2c73b08afa4
5
5
  SHA512:
6
- metadata.gz: 0fe718c389ba233b810f4fb02c5ab2f782847678bb0e04b105b276f01606c9332a8b23a9827f6ad4ec80734099f8ea514a448a1f53b81c0e7028514bd287c92c
7
- data.tar.gz: b9d5f3cd34084c1ad1c54bd4301dd86cc18fba5301a673e91ac67fc4c45c777370b1b3d4bb31d0f3588770a221ff844baf5d1680e4efdecd86ad45e45c699243
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
 
@@ -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
- ].flat_map { |path|
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.
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ViteRuby
4
- VERSION = '3.8.3'
4
+ VERSION = '3.9.0'
5
5
 
6
6
  # Internal: Versions used by default when running `vite install`.
7
7
  DEFAULT_VITE_VERSION = '^5.0.0'
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.8.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.8.3/vite_ruby
226
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.8.3/vite_ruby/CHANGELOG.md
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: []