vite_plugin_legacy 0.5.6 → 3.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7886ed9f3f64eb4f35c3de8d577b81669cce75fbd64876100bc5dd66e311697d
4
- data.tar.gz: b49a03f48c69d3c0d52cb4018ab0f46d96560063e80e35522c192cdd20e1eee3
3
+ metadata.gz: 4f6a2eefb0d64138de352eee1d44ee22d37f563764bb599a95d15c9f657321ea
4
+ data.tar.gz: c3465bf5c23ba3a69929c89a9b9b289e31026a452e4c0ad4a730cf4e33f65691
5
5
  SHA512:
6
- metadata.gz: f63fb9e57cc4b7136b68e908a952f84d26e2b309ee56adbbce3ea0d80ae004881081868beb1ae9d6f5fa6d754a60b0775c717b0a90df803fd864ff0d48836b90
7
- data.tar.gz: 03c02a867432f89e628071b2ed1bdd3e5298fe77c6a92da8855ca548104101798b4f23474a3716de5e739128a12cd00774bf9b462c11c40aea1aa258af494fcf
6
+ metadata.gz: '08e09359d5da9c7cfbf7b71c912722e434e7925f99e9afbdd303b5e3aa52493da031683c4e33fe1789a2d91e59ceb5554f6df54d8797a28e0b375334a1ca64cf'
7
+ data.tar.gz: dccef8e90c7a2d93b54f45fda6be5ce086053cc04cb575d5f4655e8679447ee8e56434eeb520ff1eefa94080c47d3a11943e360c95ba5c7e2896a3999c6bbc02
data/CHANGELOG.md CHANGED
@@ -1,6 +1,15 @@
1
- ## <small>0.5.6 (2021-07-19)</small>
1
+ ## [3.0.1](https://github.com/ElMassimo/vite_ruby/compare/vite_plugin_legacy@3.0.0...vite_plugin_legacy@3.0.1) (2021-12-17)
2
2
 
3
- * feat: Simplify implementation of legacy tag helper ([70bfac1](https://github.com/ElMassimo/vite_ruby/commit/70bfac1))
3
+
4
+
5
+ # [3.0.0](https://github.com/ElMassimo/vite_ruby/compare/vite_plugin_legacy@0.5.6...vite_plugin_legacy@3.0.0) (2021-08-16)
6
+
7
+ See https://github.com/ElMassimo/vite_ruby/pull/116 for features and breaking changes.
8
+
9
+ ## [0.5.6](https://github.com/ElMassimo/vite_ruby/compare/vite_plugin_legacy@0.5.5...vite_plugin_legacy@0.5.6) (2021-07-19)
10
+
11
+ ### Improvements
12
+ * Simplify implementation of legacy tag helper ([70bfac1](https://github.com/ElMassimo/vite_ruby/commit/70bfac1))
4
13
 
5
14
 
6
15
 
@@ -25,8 +25,6 @@ module VitePluginLegacy::TagHelpers
25
25
  def vite_legacy_polyfill_tag
26
26
  return if ViteRuby.instance.dev_server_running?
27
27
 
28
- name = vite_manifest.send(:manifest).keys.find { |file| file.include?('legacy-polyfills') } ||
29
- raise(ArgumentError, 'Vite legacy polyfill not found in manifest.json')
30
- content_tag(:script, nil, nomodule: true, src: vite_asset_path(name))
28
+ content_tag(:script, nil, nomodule: true, src: vite_asset_path('legacy-polyfills', type: :virtual))
31
29
  end
32
30
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VitePluginLegacy
4
- VERSION = '0.5.6'
4
+ VERSION = '3.0.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vite_plugin_legacy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.6
4
+ version: 3.0.1
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-07-19 00:00:00.000000000 Z
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: vite_ruby
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '3.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 3.0.4
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - "~>"
25
28
  - !ruby/object:Gem::Version
26
- version: '1.0'
29
+ version: '3.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 3.0.4
27
33
  description:
28
34
  email:
29
35
  - maximomussini@gmail.com
@@ -42,8 +48,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
42
48
  licenses:
43
49
  - MIT
44
50
  metadata:
45
- source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_plugin_legacy@0.5.6/vite_plugin_legacy
46
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_plugin_legacy@0.5.6/vite_plugin_legacy/CHANGELOG.md
51
+ source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_plugin_legacy@3.0.1/vite_plugin_legacy
52
+ changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_plugin_legacy@3.0.1/vite_plugin_legacy/CHANGELOG.md
47
53
  post_install_message:
48
54
  rdoc_options: []
49
55
  require_paths:
@@ -52,7 +58,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
52
58
  requirements:
53
59
  - - ">="
54
60
  - !ruby/object:Gem::Version
55
- version: '2.5'
61
+ version: '2.4'
56
62
  required_rubygems_version: !ruby/object:Gem::Requirement
57
63
  requirements:
58
64
  - - ">="