vite_plugin_legacy 0.5.6 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -2
- data/lib/vite_plugin_legacy/tag_helpers.rb +1 -3
- data/lib/vite_plugin_legacy/version.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f6a2eefb0d64138de352eee1d44ee22d37f563764bb599a95d15c9f657321ea
|
4
|
+
data.tar.gz: c3465bf5c23ba3a69929c89a9b9b289e31026a452e4c0ad4a730cf4e33f65691
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08e09359d5da9c7cfbf7b71c912722e434e7925f99e9afbdd303b5e3aa52493da031683c4e33fe1789a2d91e59ceb5554f6df54d8797a28e0b375334a1ca64cf'
|
7
|
+
data.tar.gz: dccef8e90c7a2d93b54f45fda6be5ce086053cc04cb575d5f4655e8679447ee8e56434eeb520ff1eefa94080c47d3a11943e360c95ba5c7e2896a3999c6bbc02
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
|
-
##
|
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
|
-
|
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
|
-
|
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
|
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.
|
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-
|
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: '
|
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: '
|
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.
|
46
|
-
changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_plugin_legacy@0.
|
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.
|
61
|
+
version: '2.4'
|
56
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
63
|
requirements:
|
58
64
|
- - ">="
|