vite_ruby 3.2.15 → 3.3.0

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: 77c7fc2754b88cfa032ac96e1a40534a5a8a2a1df4fe514d3975a05e25e94adb
4
- data.tar.gz: a0b7c84677e0a50f47f677d4344694effee7fabe492f11d66159d07033c43b7a
3
+ metadata.gz: 73124ff2bf0958d7ebba59356dac4083017d31e1ca587e1ae9c9b11a27927d46
4
+ data.tar.gz: e96ddb6e68f5fb4472bfd16173ca1dddc42c746e5021eaec3eb6bef2409b9da8
5
5
  SHA512:
6
- metadata.gz: 9b0ebcbdb4d0884b66d0b8a80b8fa387fe68a06a1819ebf7bfdf2df106f05d66c9c966136a89d5ebdccb02f7e462ba95061ab8eb14d73785c8ac70524cb8e1a1
7
- data.tar.gz: b50dc6e34a281640b697386494e401ae001f293279b575b3de9a64ace6026796d67131cb4d665e11f43369731f129c508db82d61ec0c9a5925c6c1779dd1a2ec
6
+ metadata.gz: c0954e248982e529e5af07c45dd656cb2abc9a794a62a65443766dd79829993dca7ba20a6b18bf152951827a54433637115c62a9d95b2a65b568ebe6f582e7a3
7
+ data.tar.gz: 7d488e99894013eaf84fcd0df53cf091a0e728cdc21a2c59483a0dd1defbc63a42c9a60bbe6bd15675ee799e5e95f01bccacf1f0bfc22082a322334e5ffc2a6c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # [3.3.0](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.2.15...vite_ruby@3.3.0) (2023-03-16)
2
+
3
+
4
+ ### Features
5
+
6
+ * add support for the --profile flag when running vite build ([4a949fd](https://github.com/ElMassimo/vite_ruby/commit/4a949fde1672b899c7c0382e99a669195c7ea639)), closes [#332](https://github.com/ElMassimo/vite_ruby/issues/332)
7
+ * change defaults to vite@4.2.0 and vite-plugin-ruby@3.2.0 ([e9f5702](https://github.com/ElMassimo/vite_ruby/commit/e9f570294c34682a6dd18fdc2ef13675f33375e6))
8
+
9
+
10
+
1
11
  ## [3.2.15](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.2.14...vite_ruby@3.2.15) (2023-03-01)
2
12
 
3
13
 
@@ -8,6 +8,7 @@ class ViteRuby::CLI::Build < ViteRuby::CLI::Vite
8
8
  option(:ssr, desc: 'Build the SSR entrypoint instead', type: :boolean)
9
9
  option(:force, desc: 'Force the build even if assets have not changed', type: :boolean)
10
10
  option(:watch, desc: 'Start the Rollup watcher and rebuild on files changes', type: :boolean)
11
+ option(:profile, desc: 'Gather performance metrics from the build ', type: :boolean)
11
12
 
12
13
  def call(**options)
13
14
  super { |args| ViteRuby.commands.build_from_task(*args) }
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ViteRuby
4
- VERSION = '3.2.15'
4
+ VERSION = '3.3.0'
5
5
 
6
6
  # Internal: Versions used by default when running `vite install`.
7
- DEFAULT_VITE_VERSION = '^4.0.0'
8
- DEFAULT_PLUGIN_VERSION = '^3.1.2'
7
+ DEFAULT_VITE_VERSION = '^4.2.0'
8
+ DEFAULT_PLUGIN_VERSION = '^3.2.0'
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vite_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.15
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Máximo Mussini
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-01 00:00:00.000000000 Z
11
+ date: 2023-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-cli
@@ -208,8 +208,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
208
208
  licenses:
209
209
  - MIT
210
210
  metadata:
211
- source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.2.15/vite_ruby
212
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.2.15/vite_ruby/CHANGELOG.md
211
+ source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.3.0/vite_ruby
212
+ changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.3.0/vite_ruby/CHANGELOG.md
213
213
  post_install_message: "Thanks for installing Vite Ruby!\n\nIf you upgraded the gem
214
214
  manually, please run:\n\tbundle exec vite upgrade"
215
215
  rdoc_options: []