vite_ruby 3.3.2 → 3.3.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: 42e37d2fc5b6aaf4a5ddcc0901f5af03ac90b41e283b0641cf9df997b876c13a
4
- data.tar.gz: 2aae6f15409cd5068a0e3dc19f08386db3f9320df33d1f029a39c3990a3e58f4
3
+ metadata.gz: b261ed4c2d3d2653bc218492a4507b17e45d34a4988fe974b6f1f6b5cb1edce3
4
+ data.tar.gz: ed8074ec0a226b8814b22b8dbc494c2a927acc0c08d96219bcee97e044b7de0d
5
5
  SHA512:
6
- metadata.gz: 5ef6786eb5d873462296ca4a5b4d2a5268841ac184b01aaf741c370d3182b886651630b2f53b6a87bdbd71c21b222955e6a05df8dc847460a1ed71ae84fd62a3
7
- data.tar.gz: de191787058f217c9dda7c8823a510aeece0b8e0e95961f4f9325cdbe8612fd6936373c452cba90c13fb99111b5a992bd5f8dcd470e36c524a2df5f373d6bbe0
6
+ metadata.gz: d49d7a773da0ad3f5766b045d333ac04e84f3fc61bfe94af473c45f1aeda1a2070dc6d8319fc4e051ed18b598286b35ff295e80d6c26d09c7485a2d6df4c41f6
7
+ data.tar.gz: d1bce21f1be30d5beb653d73ff999475939affcd93db82734560979ca1a2a5413498ef9ec948ae036273bd1946ce9c0113e4607a38cc2e78f6d2f3f0e50309b9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [3.3.3](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.3.2...vite_ruby@3.3.3) (2023-06-19)
2
+
3
+
4
+ ### Features
5
+
6
+ * allow skipping dev dependencies on install ([#374](https://github.com/ElMassimo/vite_ruby/issues/374)) ([a309f4f](https://github.com/ElMassimo/vite_ruby/commit/a309f4f9fc62fb7b9d0728b66b30ad90e68ba7bf))
7
+ * Use javascript_tag helper for vite_react_refresh_tag ([#372](https://github.com/ElMassimo/vite_ruby/issues/372)) ([238c6bd](https://github.com/ElMassimo/vite_ruby/commit/238c6bd211c0fafaa6170f0bdd631a0f6e41d992)), closes [#249](https://github.com/ElMassimo/vite_ruby/issues/249)
8
+
9
+
10
+
1
11
  ## [3.3.2](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.3.1...vite_ruby@3.3.2) (2023-05-09)
2
12
 
3
13
 
data/lib/tasks/vite.rake CHANGED
@@ -42,11 +42,11 @@ namespace :vite do
42
42
 
43
43
  desc 'Ensure build dependencies like Vite are installed before bundling'
44
44
  task :install_dependencies do
45
+ install_env_args = ENV['VITE_RUBY_SKIP_INSTALL_DEV_DEPENDENCIES'] == 'true' ? {} : { 'NODE_ENV' => 'development' }
45
46
  cmd = ViteRuby.commands.legacy_npm_version? ? 'npx ci --yes' : 'npx --yes ci'
46
- result = system({ 'NODE_ENV' => 'development' }, cmd)
47
-
47
+ result = system(install_env_args, cmd)
48
48
  # Fallback to `yarn` if `npx` is not available.
49
- system({ 'NODE_ENV' => 'development' }, 'yarn install --frozen-lockfile') if result.nil?
49
+ system(install_env_args, 'yarn install --frozen-lockfile') if result.nil?
50
50
  end
51
51
 
52
52
  desc "Provide information on ViteRuby's environment"
@@ -51,16 +51,25 @@ class ViteRuby::Manifest
51
51
  if dev_server_running?
52
52
  <<~REACT_REFRESH
53
53
  <script type="module">
54
- import RefreshRuntime from '#{ prefix_asset_with_host('@react-refresh') }'
55
- RefreshRuntime.injectIntoGlobalHook(window)
56
- window.$RefreshReg$ = () => {}
57
- window.$RefreshSig$ = () => (type) => type
58
- window.__vite_plugin_react_preamble_installed__ = true
54
+ #{ react_preamble_code }
59
55
  </script>
60
56
  REACT_REFRESH
61
57
  end
62
58
  end
63
59
 
60
+ # Public: Source script for the React Refresh plugin.
61
+ def react_preamble_code
62
+ if dev_server_running?
63
+ <<~REACT_PREAMBLE_CODE
64
+ import RefreshRuntime from '#{ prefix_asset_with_host('@react-refresh') }'
65
+ RefreshRuntime.injectIntoGlobalHook(window)
66
+ window.$RefreshReg$ = () => {}
67
+ window.$RefreshSig$ = () => (type) => type
68
+ window.__vite_plugin_react_preamble_installed__ = true
69
+ REACT_PREAMBLE_CODE
70
+ end
71
+ end
72
+
64
73
  protected
65
74
 
66
75
  # Internal: Strict version of lookup.
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ViteRuby
4
- VERSION = '3.3.2'
4
+ VERSION = '3.3.3'
5
5
 
6
6
  # Internal: Versions used by default when running `vite install`.
7
7
  DEFAULT_VITE_VERSION = '^4.3.0'
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.3.2
4
+ version: 3.3.3
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-05-09 00:00:00.000000000 Z
11
+ date: 2023-06-19 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.3.2/vite_ruby
212
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.3.2/vite_ruby/CHANGELOG.md
211
+ source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.3.3/vite_ruby
212
+ changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.3.3/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: []