This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
module Docs
class Vite < UrlScraper
self.name = 'Vite'
self.slug = 'vite'
self.type = 'simple'
self.links = {
home: 'https://vitejs.dev/',
code: 'https://github.com/vitejs/vite'
}
options[:root_title] = 'Vite'
options[:attribution] = <<-HTML
© 2019–present, Yuxi (Evan) You and Vite contributors<br>
Licensed under the MIT License.
HTML
self.release = '2.9.1'
self.base_url = 'https://vitejs.dev/'
self.initial_paths = %w(guide/)
html_filters.push 'vite/entries', 'vite/clean_html'
def get_latest_version(opts)
get_npm_version('vite', opts)
end