Skip to content

Commit

Permalink
Merge pull request #117 from extractus/dev
Browse files Browse the repository at this point in the history
v7.0.7
  • Loading branch information
ndaidong authored Nov 6, 2023
2 parents 105496d + 7abcabc commit 4a1cd0b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js",
"html-entities": "https://esm.sh/[email protected]",
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.2.5",
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.3.2",
"bellajs": "https://esm.sh/[email protected]"
}
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.0.6",
"version": "7.0.7",
"name": "@extractus/feed-extractor",
"description": "To read and normalize RSS/ATOM/JSON feed data",
"homepage": "https://extractor-demos.pages.dev",
Expand Down Expand Up @@ -31,14 +31,14 @@
"dependencies": {
"bellajs": "^11.1.2",
"cross-fetch": "^4.0.0",
"fast-xml-parser": "^4.2.7",
"fast-xml-parser": "^4.3.2",
"html-entities": "^2.4.0"
},
"devDependencies": {
"eslint": "^8.47.0",
"https-proxy-agent": "^7.0.1",
"jest": "^29.6.3",
"nock": "^13.3.3"
"eslint": "^8.53.0",
"https-proxy-agent": "^7.0.2",
"jest": "^29.7.0",
"nock": "^13.3.8"
},
"keywords": [
"extractor",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/parseAtomFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const transform = (item, options) => {
title: getText(title),
link: getPureUrl(link, id, baseUrl),
published: useISODateFormat ? toISODateString(pubDate) : pubDate,
description: buildDescription(summary || htmlContent, descriptionMaxLen),
description: buildDescription(htmlContent, descriptionMaxLen),
}

const extraFields = getExtraEntryFields(item)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/parseRdfFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const transform = (item, options) => {
title: getText(title),
link: getPureUrl(link, guid, baseUrl),
published,
description: buildDescription(description || htmlContent, descriptionMaxLen),
description: buildDescription(htmlContent, descriptionMaxLen),
}

const extraFields = getExtraEntryFields(item)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/parseRssFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const transform = (item, options) => {
title: getText(title),
link: getPureUrl(link, guid, baseUrl),
published,
description: buildDescription(description || htmlContent, descriptionMaxLen),
description: buildDescription(htmlContent, descriptionMaxLen),
}

const extraFields = getExtraEntryFields(item)
Expand Down

0 comments on commit 4a1cd0b

Please sign in to comment.