Skip to content

Commit

Permalink
Merge pull request #126 from extractus/7.1.0
Browse files Browse the repository at this point in the history
v7.1.0
  • Loading branch information
ndaidong authored Mar 29, 2024
2 parents 581818f + 056b4a9 commit 38a50fe
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js",
"html-entities": "https://esm.sh/html-entities@2.4.0",
"fast-xml-parser": "https://esm.sh/[email protected].3",
"bellajs": "https://esm.sh/[email protected].2"
"html-entities": "https://esm.sh/html-entities@2.5.2",
"fast-xml-parser": "https://esm.sh/[email protected].6",
"bellajs": "https://esm.sh/[email protected].3"
}
}
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface FeedEntry {
link?: string;
title?: string;
description?: string;
published?: Date;
published?: string;
}

export interface FeedData {
Expand All @@ -17,7 +17,7 @@ export interface FeedData {
description?: string;
generator?: string;
language?: string;
published?: Date;
published?: string;
entries?: Array<FeedEntry>;
}

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.0.9",
"version": "7.1.0",
"name": "@extractus/feed-extractor",
"description": "To read and normalize RSS/ATOM/JSON feed data",
"homepage": "https://extractor-demos.pages.dev",
Expand Down Expand Up @@ -39,17 +39,17 @@
"reset": "node reset"
},
"dependencies": {
"bellajs": "^11.1.2",
"bellajs": "^11.1.3",
"cross-fetch": "^4.0.0",
"fast-xml-parser": "^4.3.3",
"html-entities": "^2.4.0"
"fast-xml-parser": "^4.3.6",
"html-entities": "^2.5.2"
},
"devDependencies": {
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"https-proxy-agent": "^7.0.2",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"https-proxy-agent": "^7.0.4",
"jest": "^29.7.0",
"nock": "^13.5.0"
"nock": "^13.5.4"
},
"keywords": [
"extractor",
Expand Down

0 comments on commit 38a50fe

Please sign in to comment.