Sha256: 7caf5d67c6dc8220ac8501d14d1fe3f4d35dee9dd3c9315db7e6c7f24a68173b
Contents?: true
Size: 1.62 KB
Versions: 3
Compression:
Stored size: 1.62 KB
Contents
# frozen_string_literal: true require 'jekyll/vite' # Internal: Extends the base installation script from Vite Ruby to work for a # typical Jekyll site. module Jekyll::Vite::Installation JEKYLL_TEMPLATES = Pathname.new(File.expand_path('../../../templates', __dir__)) # Override: Setup a typical Jekyll site to use Vite. def setup_app_files cp JEKYLL_TEMPLATES.join('config/jekyll-vite.json'), config.config_path append root.join('Procfile.dev'), 'jekyll: bin/jekyll-vite wait && bundle exec jekyll serve --livereload' cp JEKYLL_TEMPLATES.join('exe/dev'), root.join('exe/dev') `bundle binstub jekyll-vite --path #{ root.join('bin') }` `bundle config --delete bin` append root.join('Rakefile'), <<~RAKE require 'jekyll/vite' ViteRuby.install_tasks RAKE end # Override: Inject the vite client and sample script to the default HTML template. def install_sample_files super inject_line_after_last root.join('_config.yml'), 'plugins:', ' - jekyll/vite' replace_first_line root.join('_config.yml'), '# exclude:', 'exclude:' inject_line_after_last root.join('_config.yml'), 'exclude:', <<-YML.chomp("\n") - bin - config - vite.config.ts - tmp - Procfile.dev YML if root.join('Gemfile').read.include?('minima') append root.join('_includes/custom-head.html'), helper_tags else inject_line_before root.join('_layouts/default.html'), '</head>', helper_tags end end def helper_tags <<-HTML.chomp("\n") {% vite_client_tag %} {% vite_javascript_tag application %} HTML end end ViteRuby::CLI::Install.prepend(Jekyll::Vite::Installation)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jekyll-vite-3.0.4 | lib/jekyll/vite/installation.rb |
jekyll-vite-3.0.3 | lib/jekyll/vite/installation.rb |
jekyll-vite-3.0.2 | lib/jekyll/vite/installation.rb |