-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
882 additions
and
933 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "feed", | ||
"version": "2.0.4", | ||
"version": "3.0.0", | ||
"description": "Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!", | ||
"homepage": "https://github.com/jpmonette", | ||
"author": "Jean-Philippe Monette <[email protected]>", | ||
|
@@ -23,8 +23,7 @@ | |
"blog" | ||
], | ||
"dependencies": { | ||
"luxon": "^1.3.3", | ||
"xml": "^1.0.1" | ||
"xml-js": "^1.6.11" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^23.3.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,7 @@ exports[`atom 1.0 should generate a valid feed 1`] = ` | |
<subtitle>This is my personnal feed!</subtitle> | ||
<logo>http://example.com/image.png</logo> | ||
<rights>All rights reserved 2013, John Doe</rights> | ||
<category term=\\"Technology\\"> | ||
</category> | ||
<category term=\\"Technology\\"/> | ||
<contributor> | ||
<name>Johan Cruyff</name> | ||
<email>[email protected]</email> | ||
|
@@ -27,8 +26,7 @@ exports[`atom 1.0 should generate a valid feed 1`] = ` | |
<entry> | ||
<title type=\\"html\\"><![CDATA[Hello World]]></title> | ||
<id>https://example.com/hello-world</id> | ||
<link href=\\"https://example.com/hello-world\\"> | ||
</link> | ||
<link href=\\"https://example.com/hello-world\\"/> | ||
<updated>2013-07-13T23:00:00.000Z</updated> | ||
<summary type=\\"html\\"><![CDATA[This is an article about Hello World.]]></summary> | ||
<content type=\\"html\\"><![CDATA[Content of my item]]></content> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,7 @@ exports[`rss 2.0 should generate a valid feed 1`] = ` | |
<content:encoded><![CDATA[Content of my item]]></content:encoded> | ||
<author>[email protected] (Jane Doe)</author> | ||
<author>[email protected] (Joe Smith)</author> | ||
<enclosure url=\\"https://example.com/hello-world.jpg\\"> | ||
</enclosure> | ||
<enclosure url=\\"https://example.com/hello-world.jpg\\"/> | ||
</item> | ||
</channel> | ||
</rss>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.