You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/lib/docs/scrapers/vite.rb

28 lines
654 B

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
&copy; 2019present, 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
end
end