Skip to content

Commit ff77b66

Browse files
committed
feat: rewrote and refactored for browser support
1 parent 9c8961b commit ff77b66

File tree

118 files changed

+16956
-10520
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+16956
-10520
lines changed

.browserslistrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Browsers that we support
2+
3+
> 1%
4+
last 2 versions

.commitlintrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"@commitlint/config-conventional"
4+
]
5+
}

.dist.babelrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"presets": [
3+
["@babel/env", {
4+
"targets": {
5+
"browsers": [ "> 1%", "last 2 versions" ]
6+
}
7+
}]
8+
]
9+
}

.dist.eslintrc

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": ["eslint:recommended"],
3+
"env": {
4+
"node": false,
5+
"browser": true,
6+
"amd": true,
7+
"es6": true,
8+
"commonjs": true
9+
},
10+
"plugins": ["compat"],
11+
"rules": {
12+
"no-unused-vars": "warn",
13+
"no-cond-assign": "warn"
14+
},
15+
"globals": {
16+
},
17+
"settings": {
18+
"polyfills": [
19+
]
20+
}
21+
}

.gitignore

+25-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# OS #
2+
###################
3+
.DS_Store
4+
.idea
5+
Thumbs.db
6+
tmp/
7+
temp/
8+
9+
10+
# Node.js #
11+
###################
112
node_modules
2-
src-cov
3-
later-cov.js
13+
14+
15+
# NYC #
16+
###################
17+
coverage
18+
*.lcov
19+
.nyc_output
20+
21+
22+
# Files #
23+
###################
24+
*.log
25+
lib
26+
dist

.lib.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"presets": [
3+
["@babel/env", {
4+
"targets": {
5+
"node": "6.4.0",
6+
"browsers": [ "> 1%", "last 2 versions" ]
7+
}
8+
}]
9+
],
10+
"sourceMaps": "both"
11+
}

.lib.eslintrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": ["eslint:recommended", "plugin:node/recommended"],
3+
"env": { "browser": true" },
4+
"plugins": ["compat"],
5+
"rules": {
6+
"no-cond-assign": "warn"
7+
},
8+
"settings": {
9+
"polyfills": []
10+
}
11+
}

.lintstagedrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
"*.md,!test/**/*.md": [
3+
filenames => filenames.map(filename => `remark ${filename} -qfo`)
4+
],
5+
'package.json': 'fixpack',
6+
'*.js': 'xo --fix'
7+
};

.nycrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extension": [
3+
".js"
4+
],
5+
"report-dir": "./coverage",
6+
"temp-dir": "./.nyc_output",
7+
"reporter": ["lcov", "html", "text"],
8+
"check-coverage": true,
9+
"lines": 100,
10+
"functions": 100,
11+
"branches": 100
12+
}

.prettierrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"bracketSpacing": true,
4+
"trailingComma": "none"
5+
}

.remarkrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"plugins": [
3+
"preset-github"
4+
]
5+
}

.travis.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
script: "npm test"
21
language: node_js
32
node_js:
4-
- "0.10"
5-
- "node"
3+
- 6
4+
- 8
5+
- 10
6+
- 12
7+
- 14
8+
script:
9+
- npm run test-coverage
10+
after_success:
11+
- npm run coverage

LICENSE

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
The MIT License (MIT)
1+
MIT License
22

3-
Copyright © 2013 BunKat
3+
Copyright (c) 2020 BunKat, Nick Baugh <[email protected]> (http://niftylettuce.com/)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
copies of the Software, and to permit persons to whom the Software is
1010
furnished to do so, subject to the following conditions:
1111

12-
The above copyright notice and this permission notice shall be included in
13-
all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21-
THE SOFTWARE.
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

-80
This file was deleted.

README.md

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# @breejs/later
2+
3+
[![build status](https://img.shields.io/travis/com/breejs/later.svg)](https://travis-ci.com/breejs/later)
4+
[![code coverage](https://img.shields.io/codecov/c/github/breejs/later.svg)](https://codecov.io/gh/breejs/later)
5+
[![code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
6+
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
7+
[![made with lass](https://img.shields.io/badge/made_with-lass-95CC28.svg)](https://lass.js.org)
8+
[![license](https://img.shields.io/github/license/breejs/later.svg)](LICENSE)
9+
[![npm downloads](https://img.shields.io/npm/dt/@breejs/later.svg)](https://npm.im/@breejs/later)
10+
11+
> This project is a maintained fork of Later, as I needed it to be maintained and modernized for [Bree][]. Later is a library for describing recurring schedules and calculating their future occurrences. It supports a very flexible schedule definition including support for composite schedules and schedule exceptions. Create new schedules manually, via Cron expression, via text expressions, or using a fully chainable API.
12+
13+
14+
## Table of Contents
15+
16+
* [Features](#features)
17+
* [Documentation](#documentation)
18+
* [Install](#install)
19+
* [Usage](#usage)
20+
* [Node](#node)
21+
* [Browser](#browser)
22+
* [Contributors](#contributors)
23+
* [License](#license)
24+
25+
26+
## Features
27+
28+
Types of schedules supported by _Later_:
29+
30+
* Run a report on the last day of every month at 12 AM except in December
31+
* Install patches on the 2nd Tuesday of every month at 4 AM
32+
* Gather CPU metrics every 10 mins Mon - Fri and every 30 mins Sat - Sun
33+
* Send out a scary e-mail at 13:13:13 every Friday the 13th
34+
35+
36+
## Documentation
37+
38+
See <https://breejs.github.com/later> for complete documentation and usage.
39+
40+
41+
## Install
42+
43+
[npm][]:
44+
45+
```sh
46+
npm install @breejs/later
47+
```
48+
49+
[yarn][]:
50+
51+
```sh
52+
yarn add @breejs/later
53+
```
54+
55+
56+
## Usage
57+
58+
### Node
59+
60+
```js
61+
const later = require('later');
62+
63+
console.log(later);
64+
```
65+
66+
### Browser
67+
68+
#### VanillaJS
69+
70+
This is the solution for you if you're just using `<script>` tags everywhere!
71+
72+
```html
73+
<script src="https://unpkg.com/@breejs/later"></script>
74+
<script type="text/javascript">
75+
(function() {
76+
console.log(later);
77+
})();
78+
</script>
79+
```
80+
81+
#### Bundler
82+
83+
Assuming you are using [browserify][], [webpack][], [rollup][], or another bundler, you can simply follow [Node](#node) usage above.
84+
85+
86+
## Contributors
87+
88+
| Name | Website |
89+
| -------------- | -------------------------- |
90+
| **BunKat** | |
91+
| **Nick Baugh** | <http://niftylettuce.com/> |
92+
93+
94+
## License
95+
96+
[MIT](LICENSE) © BunKat
97+
98+
99+
##
100+
101+
[npm]: https://www.npmjs.com/
102+
103+
[yarn]: https://yarnpkg.com/
104+
105+
[browserify]: https://github.com/browserify/browserify
106+
107+
[webpack]: https://github.com/webpack/webpack
108+
109+
[rollup]: https://github.com/rollup/rollup
110+
111+
[bree]: https://github.com/breejs/bree

0 commit comments

Comments
 (0)