vite_ruby 3.6.0 → 3.6.2
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 +4 -4
 - data/CHANGELOG.md +13 -0
 - data/lib/vite_ruby/cli/install.rb +14 -1
 - data/lib/vite_ruby/config.rb +1 -0
 - data/lib/vite_ruby/version.rb +1 -1
 - metadata +4 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 1e1e2c37395b2cfb186b2c79267e25e5c4b129e2aea33ae65149bb7f87d35e64
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 94b174a0c5bda1db5bdccadfad545a5430c94c6515cd14c77489322dca40ac9d
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 338e68fd7be884ed89e390ad65a3718834ae5ed89e9b0953897225b878808e9286355558b1de0e7d307ab6cdef0ceabf129fe3ecbde706f65f36f6729c715150
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ef26d5734f92a257f3eea83b69f3c8a1f8ad76071854334a0f08207d7b9306c8c616a591b52995d978e21e0d1586d81def989038befaeac075445d844a555f33
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,3 +1,16 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ## [3.6.2](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.6.1...vite_ruby@3.6.2) (2024-07-16)
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            ## [3.6.1](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.6.0...vite_ruby@3.6.1) (2024-07-16)
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            ### Bug Fixes
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            * use ESM by default in new installations ([#479](https://github.com/ElMassimo/vite_ruby/issues/479)) ([cc379ca](https://github.com/ElMassimo/vite_ruby/commit/cc379ca613dd4e5863f8556be62ea623b56cfe0c)), closes [#431](https://github.com/ElMassimo/vite_ruby/issues/431)
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
       1 
14 
     | 
    
         
             
            # [3.6.0](https://github.com/ElMassimo/vite_ruby/compare/vite_ruby@3.5.0...vite_ruby@3.6.0) (2024-06-07)
         
     | 
| 
       2 
15 
     | 
    
         | 
| 
       3 
16 
     | 
    
         | 
| 
         @@ -1,6 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # frozen_string_literal: true
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            require 'stringio'
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'json'
         
     | 
| 
       4 
5 
     | 
    
         | 
| 
       5 
6 
     | 
    
         
             
            class ViteRuby::CLI::Install < Dry::CLI::Command
         
     | 
| 
       6 
7 
     | 
    
         
             
              desc 'Performs the initial configuration setup to get started with Vite Ruby.'
         
     | 
| 
         @@ -79,7 +80,19 @@ private 
     | 
|
| 
       79 
80 
     | 
    
         
             
              # Internal: Installs vite and vite-plugin-ruby at the project level.
         
     | 
| 
       80 
81 
     | 
    
         
             
              def install_js_dependencies
         
     | 
| 
       81 
82 
     | 
    
         
             
                package_json = root.join('package.json')
         
     | 
| 
       82 
     | 
    
         
            -
                 
     | 
| 
      
 83 
     | 
    
         
            +
                unless package_json.exist?
         
     | 
| 
      
 84 
     | 
    
         
            +
                  write package_json, <<~JSON
         
     | 
| 
      
 85 
     | 
    
         
            +
                    {
         
     | 
| 
      
 86 
     | 
    
         
            +
                      "private": true,
         
     | 
| 
      
 87 
     | 
    
         
            +
                      "type": "module"
         
     | 
| 
      
 88 
     | 
    
         
            +
                    }
         
     | 
| 
      
 89 
     | 
    
         
            +
                  JSON
         
     | 
| 
      
 90 
     | 
    
         
            +
                end
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                if (JSON.parse(package_json.read)['type'] != 'module' rescue nil)
         
     | 
| 
      
 93 
     | 
    
         
            +
                  FileUtils.mv root.join('vite.config.ts'), root.join('vite.config.mts'), force: true, verbose: true
         
     | 
| 
      
 94 
     | 
    
         
            +
                end
         
     | 
| 
      
 95 
     | 
    
         
            +
             
     | 
| 
       83 
96 
     | 
    
         
             
                deps = js_dependencies.join(' ')
         
     | 
| 
       84 
97 
     | 
    
         
             
                run_with_capture("#{ npm_install } -D #{ deps }", stdin_data: "\n")
         
     | 
| 
       85 
98 
     | 
    
         
             
              end
         
     | 
    
        data/lib/vite_ruby/config.rb
    CHANGED
    
    
    
        data/lib/vite_ruby/version.rb
    CHANGED
    
    
    
        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.6. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 3.6.2
         
     | 
| 
       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: 2024- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-07-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.6. 
     | 
| 
       212 
     | 
    
         
            -
              changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.6. 
     | 
| 
      
 211 
     | 
    
         
            +
              source_code_uri: https://github.com/ElMassimo/vite_ruby/tree/vite_ruby@3.6.2/vite_ruby
         
     | 
| 
      
 212 
     | 
    
         
            +
              changelog_uri: https://github.com/ElMassimo/vite_ruby/blob/vite_ruby@3.6.2/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: []
         
     |