We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bb2a6e commit ced83e1Copy full SHA for ced83e1
2 files changed
lib/docs/filters/typescript/entries.rb
@@ -18,6 +18,7 @@ def get_type
18
19
def additional_entries
20
return [] unless slug.start_with?('handbook')
21
+ return [] if slug.include?('release-notes')
22
return [] if slug == 'handbook/writing-definition-files'
23
24
css('.post-content h1, .post-content h2').each_with_object [] do |node, entries|
lib/docs/scrapers/typescript.rb
@@ -2,7 +2,7 @@ module Docs
2
class Typescript < UrlScraper
3
self.name = 'TypeScript'
4
self.type = 'typescript'
5
- self.release = '2.0.6'
+ self.release = '2.1.5'
6
self.base_url = 'https://www.typescriptlang.org/docs/'
7
self.root_path = 'tutorial.html'
8
self.links = {
0 commit comments