vite_padrino 0.5.2 → 0.5.3
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 +10 -1
- data/lib/vite_padrino/tag_helpers.rb +2 -2
- data/lib/vite_padrino/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: bd907dc28308d4395a8aeac8a853c493b3bdbc68273fff8cfec5d9fc6ad575ac
|
4
|
+
data.tar.gz: f10d53e20cdff1fac2024619b2425b43a5e38e4409e2b67502878f53489a54ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 961d5861874ba434045869b93835450d60d68d3cf4027bad930b4e5f065fcf6b7508241e1c2d02f9538cdebea022ab45c7d5947bce2cd8614bd775d361977f7c
|
7
|
+
data.tar.gz: 97886c78bab23be9cadaea8b780e69df5fddb7b7fd85d95e361193e344b27451c345e28423cf705e13b9bc42bee588cbf7597240ed48ce30ca062b3b06aaa5b8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
|
-
## [0.5.
|
1
|
+
## [0.5.3](https://github.com/ElMassimo/vite_ruby/compare/vite_padrino@0.5.2...vite_padrino@0.5.3) (2021-03-18)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
2
5
|
|
6
|
+
* Using a .jsx extension in a tag helper in development ([a56491b](https://github.com/ElMassimo/vite_ruby/commit/a56491b96720ae537b6b6305aa7efa70cf19e4ee))
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
## [0.5.2](https://github.com/ElMassimo/vite_ruby/compare/vite_padrino@0.5.1...vite_padrino@0.5.2) (2021-03-07)
|
3
11
|
|
12
|
+
- Add a bounded requirement to `vite_ruby` dependency.
|
4
13
|
|
5
14
|
## [0.5.1](https://github.com/ElMassimo/vite_ruby/compare/vite_padrino@0.5.0...vite_padrino@0.5.1) (2021-02-26)
|
6
15
|
|
@@ -26,7 +26,7 @@ module VitePadrino::TagHelpers
|
|
26
26
|
crossorigin: 'anonymous',
|
27
27
|
**options)
|
28
28
|
entries = vite_manifest.resolve_entries(*names, type: asset_type)
|
29
|
-
tags = javascript_include_tag(*entries.fetch(:scripts), crossorigin: crossorigin, type: type, **options)
|
29
|
+
tags = javascript_include_tag(*entries.fetch(:scripts), crossorigin: crossorigin, type: type, extname: false, **options)
|
30
30
|
tags << vite_preload_tag(*entries.fetch(:imports), crossorigin: crossorigin) unless skip_preload_tags
|
31
31
|
tags << stylesheet_link_tag(*entries.fetch(:stylesheets)) unless skip_style_tags
|
32
32
|
tags
|
@@ -34,7 +34,7 @@ module VitePadrino::TagHelpers
|
|
34
34
|
|
35
35
|
# Public: Renders a <script> tag for the specified Vite entrypoints.
|
36
36
|
def vite_typescript_tag(*names, **options)
|
37
|
-
vite_javascript_tag(*names, asset_type: :typescript,
|
37
|
+
vite_javascript_tag(*names, asset_type: :typescript, **options)
|
38
38
|
end
|
39
39
|
|
40
40
|
# Public: Renders a <link> tag for the specified Vite entrypoints.
|
data/lib/vite_padrino/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vite_padrino
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
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: 2021-03-
|
11
|
+
date: 2021-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: vite_ruby
|
@@ -43,8 +43,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
|
|
43
43
|
licenses:
|
44
44
|
- MIT
|
45
45
|
metadata:
|
46
|
-
source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_padrino@0.5.
|
47
|
-
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_padrino@0.5.
|
46
|
+
source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_padrino@0.5.3/vite_padrino
|
47
|
+
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_padrino@0.5.3/vite_padrino/CHANGELOG.md
|
48
48
|
post_install_message:
|
49
49
|
rdoc_options: []
|
50
50
|
require_paths:
|