vite_rails 3.0.12 → 3.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/vite_rails/tag_helpers.rb +7 -0
- data/lib/vite_rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cabf760d39a47511f0b1d0f81c4e4e3b9ae0c11f7fc95c303b70c8375ea44f39
|
4
|
+
data.tar.gz: 5baf486c7d0e58458d9eb7c43e95efdf04b1c2f479f078ec38d356342fd45574
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f93350532a41c87455a88553bee2bef63cd8628008646558611965889c76d8455e1771dc9a71a71bed669d7b2d65c805bf10695155339ba95c5f073934c5e47e
|
7
|
+
data.tar.gz: 7c8a26f232a97246580c79ed7785397530a8e60523c376bd02cc088005990cb5836ac5ecbd16e71e53e908180eab28661ded94ec014fb662b833a31871a9fc74
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [3.0.13](https://github.com/ElMassimo/vite_ruby/compare/vite_rails@3.0.12...vite_rails@3.0.13) (2022-11-13)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* avoid removing double extension for non-preprocessor assets ([#301](https://github.com/ElMassimo/vite_ruby/issues/301)) ([2024f62](https://github.com/ElMassimo/vite_ruby/commit/2024f62af917cabcb817c32a5fbbe709d477c19f))
|
7
|
+
|
8
|
+
|
9
|
+
|
1
10
|
## [3.0.12](https://github.com/ElMassimo/vite_ruby/compare/vite_rails@3.0.11...vite_rails@3.0.12) (2022-08-12)
|
2
11
|
|
3
12
|
|
@@ -42,7 +42,11 @@ module ViteRails::TagHelpers
|
|
42
42
|
entries = vite_manifest.resolve_entries(*names, type: asset_type)
|
43
43
|
tags = javascript_include_tag(*entries.fetch(:scripts), crossorigin: crossorigin, type: type, extname: false, **options)
|
44
44
|
tags << vite_preload_tag(*entries.fetch(:imports), crossorigin: crossorigin, **options) unless skip_preload_tags
|
45
|
+
|
46
|
+
options[:extname] = false if Rails::VERSION::MAJOR >= 7
|
47
|
+
|
45
48
|
tags << stylesheet_link_tag(*entries.fetch(:stylesheets), media: media, **options) unless skip_style_tags
|
49
|
+
|
46
50
|
tags
|
47
51
|
end
|
48
52
|
|
@@ -54,6 +58,9 @@ module ViteRails::TagHelpers
|
|
54
58
|
# Public: Renders a <link> tag for the specified Vite entrypoints.
|
55
59
|
def vite_stylesheet_tag(*names, **options)
|
56
60
|
style_paths = names.map { |name| vite_asset_path(name, type: :stylesheet) }
|
61
|
+
|
62
|
+
options[:extname] = false if Rails::VERSION::MAJOR >= 7
|
63
|
+
|
57
64
|
stylesheet_link_tag(*style_paths, **options)
|
58
65
|
end
|
59
66
|
|
data/lib/vite_rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vite_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Máximo Mussini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -88,8 +88,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
|
|
88
88
|
licenses:
|
89
89
|
- MIT
|
90
90
|
metadata:
|
91
|
-
source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_rails@3.0.
|
92
|
-
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_rails@3.0.
|
91
|
+
source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_rails@3.0.13/vite_rails
|
92
|
+
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_rails@3.0.13/vite_rails/CHANGELOG.md
|
93
93
|
post_install_message:
|
94
94
|
rdoc_options: []
|
95
95
|
require_paths:
|