vite_padrino 0.5.2 → 0.5.3

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: b1253f1fa910e42173eedaba031acffdb2c7a6b48cd2c1a974d1fb9d157c8c79
4
- data.tar.gz: 745c5d2b41f8dab7ff36fe6e9827798a4146e84d654c2dc302fc769a71cb48ea
3
+ metadata.gz: bd907dc28308d4395a8aeac8a853c493b3bdbc68273fff8cfec5d9fc6ad575ac
4
+ data.tar.gz: f10d53e20cdff1fac2024619b2425b43a5e38e4409e2b67502878f53489a54ff
5
5
  SHA512:
6
- metadata.gz: d7e5c7e625833d71929d592df0f04627917c6279e8508375bccda926904dc06eaa682d32a69d90db21dcd6d660740a8ed26e523af1c1b72c9ad11ceed2a64fff
7
- data.tar.gz: 6cdf5caa77c8bbc5ea24ecae0bcff9647d1901448a394834a6a2b9684f2a88f0ec87b6717a1e85713bade9350e64520d2e7026da4dbadd3d24336abd79356fb2
6
+ metadata.gz: 961d5861874ba434045869b93835450d60d68d3cf4027bad930b4e5f065fcf6b7508241e1c2d02f9538cdebea022ab45c7d5947bce2cd8614bd775d361977f7c
7
+ data.tar.gz: 97886c78bab23be9cadaea8b780e69df5fddb7b7fd85d95e361193e344b27451c345e28423cf705e13b9bc42bee588cbf7597240ed48ce30ca062b3b06aaa5b8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
- ## [0.5.2](https://github.com/ElMassimo/vite_ruby/compare/vite_padrino@0.5.1...vite_padrino@0.5.2) (2021-03-07)
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, extname: false, **options)
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VitePadrino
4
- VERSION = '0.5.2'
4
+ VERSION = '0.5.3'
5
5
  end
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.2
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-07 00:00:00.000000000 Z
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.2/vite_padrino
47
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_padrino@0.5.2/vite_padrino/CHANGELOG.md
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: