rss-to-twitter
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "rss-to-twitter", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "", | ||
@@ -13,3 +13,22 @@ "main": "src/index.js", | ||
}, | ||
"keywords": [], | ||
"keywords": [ | ||
"rss", | ||
"twitter post with image", | ||
"twitter", | ||
"cron", | ||
"timezone", | ||
"publish", | ||
"messages", | ||
"bot", | ||
"filter", | ||
"twitter bot", | ||
"fabiel-leon", | ||
"template", | ||
"html", | ||
"handlebars", | ||
"async", | ||
"promises", | ||
"node-fetch", | ||
"fetch" | ||
], | ||
"author": "Fabiel Leon <fabiel.leon.oliva@gmail.com>", | ||
@@ -16,0 +35,0 @@ "license": "ISC", |
@@ -97,3 +97,3 @@ const { stream, feedparser } = require('rss-rewriter'); | ||
const filtered = filter ? await async.filter(items, filter) : items; | ||
const procesed = preprocess ? await async.map(items, preprocess) : filtered; | ||
const procesed = preprocess ? await async.map(filtered, preprocess) : filtered; | ||
@@ -100,0 +100,0 @@ console.log('items', items.length, procesed.length); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41259