Comparing version 0.9.19 to 1.0.0
{ | ||
"name": "timexe", | ||
"version": "0.9.19", | ||
"version": "1.0.0", | ||
"description": "Yet another cron clone – but this one is better :o) - new improved syntax – milliseconds resolution – both for node JS and browser", | ||
@@ -5,0 +5,0 @@ "main": "timexe.js", |
# Timexe - A Cron-like Timer and scheduler witn milliseconds resolution | ||
## Also works in a browser | ||
[![License](https://img.shields.io/npm/l/timexe.svg)](https://github.com/paragi/timexe/blob/master/LICENSE) | ||
[![downloads per month](http://img.shields.io/npm/dm/timexe.svg)](https://www.npmjs.org/package/timexe) | ||
[![downloads per month](http://img.shields.io/npm/v/timexe.svg)](https://www.npmjs.org/package/timexe) | ||
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)](https://github.com/paragi/timexe/issues) | ||
[![Known Vulnerabilities](https://snyk.io/test/github/paragi/timexe/badge.svg)](https://snyk.io/test/github/paragi/timexe) | ||
@@ -157,2 +162,7 @@ ### Features | ||
## Change log | ||
1.0.0 Fixed test cases: | ||
"Cascading carry" failed | ||
"Only Wildcards = every hour" failed | ||
Documentation | ||
0.9.19 Bug fix. failed when "processs" undefined | ||
0.9.18 Documentation update. | ||
@@ -166,3 +176,3 @@ 0.9.14 A quick code review. No bugs repported for 2 years. | ||
####Help | ||
#### Help | ||
Please don't hesitate to submit an issue on github! It's the only way to make it better. | ||
@@ -169,0 +179,0 @@ |
@@ -79,4 +79,4 @@ /*============================================================================*\ | ||
,["* !/2 -4 12-16",1400000000,1403776800 ,"Mutually exclusive flags",false] | ||
,["* * * * * 0",1420066799,1420063200,"Cascading carry",false] | ||
,["* * * * ",1400000000,1399996800,"Only Wildcards = every hour,",false] | ||
,["* * * * * 0",1420066799,1420066800,"Cascading carry",false] | ||
,["* * * * ",1400000000,1400000400,"Only Wildcards = every hour,",false] | ||
,["* * * * 12",1400000000,1400008320,"Wildcards with one fixed value",false] | ||
@@ -83,0 +83,0 @@ ,["**1 12",1400000000,1401624000,"Wildcards with two fixed value",false] |
@@ -110,3 +110,4 @@ /*============================================================================*\ | ||
\*============================================================================*/ | ||
process.versions.timexe='0.9.7 - No late sundays'; | ||
if(typeof process !== 'undefined') | ||
process.versions.timexe='1.0.0'; | ||
@@ -176,3 +177,3 @@ /*============================================================================*\ | ||
clearTimeout(timexe.list[id].timer); | ||
delete timexe.list[id]; | ||
timexe.list.splice(id,1); | ||
return {"result":"ok","error":""}; | ||
@@ -468,3 +469,3 @@ } | ||
time: 0, | ||
error: `Can't intrepret '${f[i]}' at ${l} \n${tex}\n` + " ".repeat(l) + '^' | ||
error: `Can't intrepret '${f[i]}' at ${l} \n${tex}`+ "\n" + " ".repeat(l) + '^' | ||
} | ||
@@ -471,0 +472,0 @@ |
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
884
0
181
42943
7