File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class Yarn < UrlScraper
1212 Licensed under the BSD License.
1313 HTML
1414
15- version 'Berry' do
15+ version do
1616 self . release = '4.5.1'
1717 self . base_url = 'https://yarnpkg.com/'
1818 self . links = {
@@ -25,6 +25,18 @@ class Yarn < UrlScraper
2525 options [ :skip_patterns ] = [ /\A api/ , /\A blog/ , /\A package/ , /\A assets/ ]
2626 end
2727
28+ version '3' do
29+ self . release = '3.1.1'
30+ self . base_url = 'https://v3.yarnpkg.com/'
31+ self . links = {
32+ home : 'https://v3.yarnpkg.com/' ,
33+ code : 'https://github.com/yarnpkg/berry'
34+ }
35+ self . root_path = 'getting-started'
36+ html_filters . push 'yarn/entries_berry' , 'yarn/clean_html_berry' , 'title'
37+ options [ :skip ] = [ 'features' , 'cli' , 'configuration' , 'advanced' ]
38+ options [ :skip_patterns ] = [ /\A api/ , /\A package/ ] end
39+
2840 version 'Classic' do
2941 self . release = '1.22.17'
3042 self . base_url = 'https://classic.yarnpkg.com/en/docs/'
You can’t perform that action at this time.
0 commit comments