Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Oct 11, 2020
2 parents c081925 + 94c139f commit c6ba1d8
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 62 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -12,6 +12,8 @@

The node-cron module is tiny task scheduler in pure JavaScript for node.js based on [GNU crontab](https://www.gnu.org/software/mcron/manual/html_node/Crontab-file.html). This module allows you to schedule task in node.js using full crontab syntax.

**Need a job scheduler with support for worker threads and cron syntax?** Try out the [Bree](https://github.com/breejs/bree) job scheduler!

[![NPM](https://nodei.co/npm/node-cron.png?downloads=true&downloadRank=true&stars=false)](https://nodei.co/npm/node-cron/)


Expand Down Expand Up @@ -136,7 +138,7 @@ Arguments:
#### Options

- **scheduled**: A `boolean` to set if the created task is scheduled. Default `true`;
- **timezone**: The timezone that is used for job scheduling;
- **timezone**: The timezone that is used for job scheduling. See [tz-offset](https://github.com/node-cron/tz-offset/blob/master/generated/offsets.json) for valid values.

**Example**:

Expand Down
98 changes: 38 additions & 60 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -39,6 +39,6 @@
"sinon": "^7.3.2"
},
"dependencies": {
"tz-offset": "0.0.1"
"tz-offset": "0.0.2"
}
}

0 comments on commit c6ba1d8

Please sign in to comment.