vite_ruby 1.2.15 → 1.2.16

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: 2cc7ebe04b31db44eb45cc8c61275d09035b9496e2bb9b818909d101088b304f
4
- data.tar.gz: e5318e9fc71a89e68e707e0edf2a679b31163566f7a61478cf95b18698289b54
3
+ metadata.gz: 7965194ea235189606dac388c19d8b624f54622a666644f93a6ec3ac3bf4dc48
4
+ data.tar.gz: f9996a594e4c34d0283e498411e71d37d83b7cd793fc8f76a426f84588f5a7f4
5
5
  SHA512:
6
- metadata.gz: f187d6b794b600e55ca88d1068900afdddd14652bd2b65661ce0478ed01a296c81348cea83d7a8a049a500107be431d0c6d22c781f9be9062bfe085090295ea9
7
- data.tar.gz: df568548b57a23881f41c54388c41c46cb3da6f174463adc26e82c5998f9f76e552c3dfbd5b361345469b65ef03dbd465ed49297fa1c09c0f0783c16db6a3f1a
6
+ metadata.gz: bfa35cd809b3034cba60919967a5af1a720ea7c8497e6722d8ebf25a23847c274ebe4da216b79c0f8cadf712c16a20b070514d4bf1b23bb813457e492ddf7cbb
7
+ data.tar.gz: 5f35583a17581e6b0fc2f27b068df7420956b6069d5a85447caaa6f3f056ee41d80f8ad6f813836caf8b0a897581c5dee430f0327c634b51d16975c61f010079
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## <small>1.2.16 (2021-07-07)</small>
2
+
3
+ * feat: Enable usage in engines by using `run` from the current instance ([023a61d](https://github.com/ElMassimo/vite_ruby/commit/023a61d))
4
+
5
+
6
+
1
7
  ## [1.2.15](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@1.2.14...vite_ruby@1.2.15) (2021-07-01)
2
8
 
3
9
 
data/lib/vite_ruby.rb CHANGED
@@ -35,19 +35,11 @@ class ViteRuby
35
35
  class << self
36
36
  extend Forwardable
37
37
 
38
- def_delegators :instance, :config, :commands, :run_proxy?
38
+ def_delegators :instance, :config, :commands, :env, :run, :run_proxy?
39
39
  def_delegators :config, :mode
40
40
 
41
41
  def instance
42
- @instance ||= ViteRuby.new
43
- end
44
-
45
- # Public: Additional environment variables to pass to Vite.
46
- #
47
- # Example:
48
- # ViteRuby.env['VITE_RUBY_CONFIG_PATH'] = 'config/alternate_vite.json'
49
- def env
50
- @env ||= load_env_variables
42
+ @instance ||= new
51
43
  end
52
44
 
53
45
  # Internal: Refreshes the manifest.
@@ -60,21 +52,9 @@ class ViteRuby
60
52
  load File.expand_path('tasks/vite.rake', __dir__)
61
53
  end
62
54
 
63
- # Internal: Executes the vite binary.
64
- def run(argv, **options)
65
- ViteRuby::Runner.new(instance).run(argv, **options)
66
- end
67
-
68
- # Internal: Refreshes the config after setting the env vars.
69
- def reload_with(env_vars)
70
- env.update(env_vars)
71
- @instance = nil
72
- config
73
- end
74
-
75
- # Internal: Allows to obtain any env variables for configuration options.
76
- def load_env_variables
77
- ENV.select { |key, _| key.start_with?(ENV_PREFIX) }
55
+ # Internal: Creates a new instance with the specified options.
56
+ def reload_with(**config_options)
57
+ @instance = new(**config_options)
78
58
  end
79
59
 
80
60
  # Internal: Detects if the application has installed a framework-specific
@@ -90,6 +70,10 @@ class ViteRuby
90
70
 
91
71
  attr_writer :logger
92
72
 
73
+ def initialize(**config_options)
74
+ @config_options = config_options
75
+ end
76
+
93
77
  def logger
94
78
  @logger ||= Logger.new($stdout)
95
79
  end
@@ -107,6 +91,14 @@ class ViteRuby
107
91
  @running_at = false
108
92
  end
109
93
 
94
+ # Public: Additional environment variables to pass to Vite.
95
+ #
96
+ # Example:
97
+ # ViteRuby.env['VITE_RUBY_CONFIG_PATH'] = 'config/alternate_vite.json'
98
+ def env
99
+ @env ||= ENV.select { |key, _| key.start_with?(ENV_PREFIX) }
100
+ end
101
+
110
102
  # Public: The proxy for assets should only run in development mode.
111
103
  def run_proxy?
112
104
  config.mode == 'development'
@@ -115,6 +107,11 @@ class ViteRuby
115
107
  false
116
108
  end
117
109
 
110
+ # Internal: Executes the vite binary.
111
+ def run(argv, **options)
112
+ (@runner ||= ViteRuby::Runner.new(self)).run(argv, **options)
113
+ end
114
+
118
115
  # Public: Keeps track of watched files and triggers builds as needed.
119
116
  def builder
120
117
  @builder ||= ViteRuby::Builder.new(self)
@@ -127,7 +124,7 @@ class ViteRuby
127
124
 
128
125
  # Public: Current instance configuration for Vite.
129
126
  def config
130
- @config ||= ViteRuby::Config.resolve_config
127
+ @config ||= ViteRuby::Config.resolve_config(**@config_options)
131
128
  end
132
129
 
133
130
  # Public: Enables looking up assets managed by Vite using name and type.
@@ -33,7 +33,7 @@ private
33
33
 
34
34
  extend Forwardable
35
35
 
36
- def_delegators :@vite_ruby, :config, :logger
36
+ def_delegators :@vite_ruby, :config, :logger, :run
37
37
 
38
38
  # Internal: Reads metadata recorded on the last build, if it exists.
39
39
  def last_build_attrs
@@ -69,7 +69,7 @@ private
69
69
  def build_with_vite(*args)
70
70
  logger.info 'Building with Vite ⚡️'
71
71
 
72
- stdout, stderr, status = ViteRuby.run(['build', *args])
72
+ stdout, stderr, status = run(['build', *args])
73
73
  log_build_result(stdout, stderr.to_s, status)
74
74
 
75
75
  status.success?
@@ -72,7 +72,7 @@ private
72
72
  def create_configuration_files
73
73
  copy_template 'config/vite.config.ts', to: root.join('vite.config.ts')
74
74
  setup_app_files
75
- ViteRuby.reload_with('VITE_RUBY_CONFIG_PATH' => config.config_path)
75
+ ViteRuby.reload_with(config_path: config.config_path)
76
76
  end
77
77
 
78
78
  # Internal: Installs vite and vite-plugin-ruby at the project level.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ViteRuby
4
- VERSION = '1.2.15'
4
+ VERSION = '1.2.16'
5
5
  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: 1.2.15
4
+ version: 1.2.16
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-07-01 00:00:00.000000000 Z
11
+ date: 2021-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-cli
@@ -198,8 +198,8 @@ homepage: https://github.com/ElMassimo/vite_ruby
198
198
  licenses:
199
199
  - MIT
200
200
  metadata:
201
- source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@1.2.15/vite_ruby
202
- changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@1.2.15/vite_ruby/CHANGELOG.md
201
+ source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@1.2.16/vite_ruby
202
+ changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@1.2.16/vite_ruby/CHANGELOG.md
203
203
  post_install_message:
204
204
  rdoc_options: []
205
205
  require_paths: