vite_ruby 3.0.0 → 3.0.4

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: '059c10492c1cc0b47f4347ef78f0de17c9220392611945ba189b5169c02729ba'
4
- data.tar.gz: 534b84c6bd67bf9e7e0a74bec9ad8d277ebe37693829d3d995a26eba5b8ac2b2
3
+ metadata.gz: c544599e945ff20ce37f51b6c700190e703afa0e6e2af7114229a82385a53828
4
+ data.tar.gz: 7aa9c7c08f3ad64349d50d9313bec729492aaa6be5f4d191aef05480510ff955
5
5
  SHA512:
6
- metadata.gz: e23a593394165dfea0f743fab1699535e9c1a531cde25cd53a85d19fb454795851fe85d83907d802d7dae6adbca25b449b0c7b6ab33b6530102fb49a5526aeb4
7
- data.tar.gz: dcf237f94f9009a4427a27e807a66c3aae8a77b6ca39370a03c0f860d2d4b2d2bb4ecb93bc0f78f7a979c2105fe126c79c0297bdc32e24d7d88f860af2baf184
6
+ metadata.gz: 70d9fc824969aaaad4b3cfcc644beb934de404dcce0fe1faa30d97d9377f757baae99aad77912db2e0f9dfee176685aaaa27f6828ce6bfbbeddf433131146c7a
7
+ data.tar.gz: dcc84cacfad3542b7475f7dcd2a8fa801d4ded3bfe5f944f2ba6cd43bcb2acd3107caa45145d7e435c35bd85ef8bfcacb208c3155290f8c0b28a7ec30e88f1d1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ ## [3.0.4](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.0.3...vite_ruby@3.0.4) (2021-12-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * handle new virtual legacy-polyfill name ([#157](https://github.com/ElMassimo/vite_ruby/issues/157)) ([a34e77f](https://github.com/ElMassimo/vite_ruby/commit/a34e77f3b342c9171adc50adfd5220b57bddb961))
7
+
8
+
9
+
10
+ ## [3.0.3](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.0.2...vite_ruby@3.0.3) (2021-12-09)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * ensure bundler does not keep generating binstubs ([0dc133a](https://github.com/ElMassimo/vite_ruby/commit/0dc133a23f6caa5526fc071e0afd98f91fc1f9f6))
16
+ * explicitly require socket to enable usage in bare ruby ([cf22165](https://github.com/ElMassimo/vite_ruby/commit/cf22165fa3cc58df4c52bed154372abef4f3eff1))
17
+
18
+
19
+ ### Features
20
+
21
+ * add 'base' setting ([#152](https://github.com/ElMassimo/vite_ruby/issues/152)) ([fb7642f](https://github.com/ElMassimo/vite_ruby/commit/fb7642f849b7fe879c02e543962a72dcc1b1c48c))
22
+
23
+
24
+
25
+ ## [3.0.2](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.0.1...vite_ruby@3.0.2) (2021-10-29)
26
+
27
+
28
+ ### Features
29
+
30
+ * enable hmr when running tests in development with vite dev server ([e253bba](https://github.com/ElMassimo/vite_ruby/commit/e253bba26d164aabc7a9526df504c207ad2cf6f9))
31
+
32
+
33
+
34
+ ## [3.0.1](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.0.0...vite_ruby@3.0.1) (2021-10-27)
35
+
36
+
37
+ ### Features
38
+
39
+ * expose the `--watch` flag for the build command ([4e20d0a](https://github.com/ElMassimo/vite_ruby/commit/4e20d0a7b697b535e13335dac5a75fb8a193a133))
40
+
41
+
42
+
1
43
  # [3.0.0](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@1.2.20...vite_ruby@3.0.0) (2021-08-16)
2
44
 
3
45
  See https://github.com/ElMassimo/vite_ruby/pull/116 for features and breaking changes.
data/default.vite.json CHANGED
@@ -16,5 +16,6 @@
16
16
  "port": 3036,
17
17
  "hideBuildConsoleOutput": false,
18
18
  "viteBinPath": "node_modules/.bin/vite",
19
- "watchAdditionalPaths": []
19
+ "watchAdditionalPaths": [],
20
+ "base": ""
20
21
  }
@@ -6,6 +6,7 @@ class ViteRuby::CLI::Build < ViteRuby::CLI::Vite
6
6
  desc 'Bundle all entrypoints using Vite.'
7
7
  shared_options
8
8
  option(:force, desc: 'Force the build even if assets have not changed', type: :boolean)
9
+ option(:watch, desc: 'Start the Rollup watcher and rebuild on files changes', type: :boolean)
9
10
 
10
11
  def call(**options)
11
12
  super { |args| ViteRuby.commands.build_from_task(*args) }
@@ -63,6 +63,7 @@ class ViteRuby::Commands
63
63
  # Internal: Installs the binstub for the CLI in the appropriate path.
64
64
  def install_binstubs
65
65
  `bundle binstub vite_ruby --path #{ config.root.join('bin') }`
66
+ `bundle config --delete bin`
66
67
  end
67
68
 
68
69
  # Internal: Verifies if ViteRuby is properly installed.
@@ -71,7 +72,7 @@ class ViteRuby::Commands
71
72
  warn <<~WARN
72
73
 
73
74
  vite binstub not found.
74
- Have you run `bundle binstub vite`?
75
+ Have you run `bundle binstub vite_ruby`?
75
76
  Make sure the bin directory and bin/vite are not included in .gitignore
76
77
  WARN
77
78
  end
@@ -147,9 +147,10 @@ private
147
147
 
148
148
  # Internal: Resolves the manifest entry name for the specified resource.
149
149
  def resolve_entry_name(name, type: nil)
150
- name = with_file_extension(name.to_s, type)
150
+ return resolve_virtual_entry(name) if type == :virtual
151
151
 
152
- raise ArgumentError, "Asset names can not be relative. Found: #{ name }" if name.start_with?('.') && !name.include?('legacy-polyfills')
152
+ name = with_file_extension(name.to_s, type)
153
+ raise ArgumentError, "Asset names can not be relative. Found: #{ name }" if name.start_with?('.')
153
154
 
154
155
  # Explicit path, relative to the source_code_dir.
155
156
  name.sub(%r{^~/(.+)$}) { return Regexp.last_match(1) }
@@ -171,6 +172,11 @@ private
171
172
  end
172
173
  end
173
174
 
175
+ # Internal: Resolves a virtual entry by walking all the manifest keys.
176
+ def resolve_virtual_entry(name)
177
+ manifest.keys.find { |file| file.include?(name) } || name
178
+ end
179
+
174
180
  # Internal: Adds a file extension to the file name, unless it already has one.
175
181
  def with_file_extension(name, entry_type)
176
182
  if File.extname(name).empty? && (ext = extension_for_type(entry_type))
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ViteRuby
4
- VERSION = '3.0.0'
4
+ VERSION = '3.0.4'
5
5
 
6
6
  # Internal: Versions used by default when running `vite install`.
7
- DEFAULT_VITE_VERSION = '^2.5.0'
8
- DEFAULT_PLUGIN_VERSION = '^3.0.0'
7
+ DEFAULT_VITE_VERSION = '^2.6.13'
8
+ DEFAULT_PLUGIN_VERSION = '^3.0.2'
9
9
  end
data/lib/vite_ruby.rb CHANGED
@@ -3,6 +3,7 @@
3
3
  require 'logger'
4
4
  require 'forwardable'
5
5
  require 'pathname'
6
+ require 'socket'
6
7
 
7
8
  require 'zeitwerk'
8
9
  loader = Zeitwerk::Loader.for_gem
@@ -97,7 +98,7 @@ class ViteRuby
97
98
 
98
99
  # Public: The proxy for assets should only run in development mode.
99
100
  def run_proxy?
100
- config.mode == 'development'
101
+ config.mode == 'development' || (config.mode == 'test' && !ENV['CI'])
101
102
  rescue StandardError => error
102
103
  logger.error("Failed to check mode for Vite: #{ error.message }")
103
104
  false
@@ -10,6 +10,7 @@
10
10
  },
11
11
  "test": {
12
12
  "autoBuild": true,
13
- "publicOutputDir": "vite-test"
13
+ "publicOutputDir": "vite-test",
14
+ "port": 3037
14
15
  }
15
16
  }
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.0.0
4
+ version: 3.0.4
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: 2021-08-16 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: dry-cli
@@ -201,8 +201,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
201
201
  licenses:
202
202
  - MIT
203
203
  metadata:
204
- source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.0.0/vite_ruby
205
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.0.0/vite_ruby/CHANGELOG.md
204
+ source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.0.4/vite_ruby
205
+ changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.0.4/vite_ruby/CHANGELOG.md
206
206
  post_install_message: "Thanks for installing Vite Ruby!\n\nIf you upgraded the gem
207
207
  manually, please run:\n\tbundle exec vite upgrade"
208
208
  rdoc_options: []