Comparing version 0.3.6 to 0.3.7
{ | ||
"name": "birdwatch", | ||
"version": "0.3.6", | ||
"version": "0.3.7", | ||
"description": "Monitor and cache specific twitter feeds", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -9,3 +9,3 @@ # Birdwatch :baby_chick::watch: | ||
thus avoiding any request limits set by the Twitter API, and giving you more control over the data that is saved. | ||
You can filter tweets by hashtags, or ignore retweets. | ||
You can filter tweets by hashtags, or ignore retweets. | ||
@@ -12,0 +12,0 @@ **Note:** This is a work in progress. *Pull requests welcome!* |
10
utils.js
@@ -16,6 +16,2 @@ 'use strict'; | ||
//TODO: inspect the length of the tweet data at the begining and end of each | ||
// function to see which one is ignoring the filtered tweet data. | ||
/* | ||
@@ -141,3 +137,3 @@ * The credentials file to use for Twitter API authentication. | ||
fsAccess('./configure/local_configure.js', function(err){ | ||
fsAccess( __dirname + '/configure/local_configure.js', function(err){ | ||
if(err) { | ||
@@ -218,3 +214,2 @@ resolve(true); | ||
var matches = []; | ||
@@ -368,7 +363,6 @@ | ||
var cacheFile = "./cache/cached_tweets.json"; | ||
var cacheFile = __dirname + "/cache/cached_tweets.json"; | ||
return new Promise(function(resolve, reject){ | ||
// TODO: make the process wait until in_memory cache is available. | ||
@@ -375,0 +369,0 @@ // This will allow the process to be properly tested. |
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
34431
541