-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
526 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
|
||
name: "\U0001F41E Bug report" | ||
about: Something is not working as it should | ||
title: "\[fix] DESCRIPTIVE TITLE" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### Describe the bug | ||
|
||
* Node.js version: | ||
* OS & version: | ||
|
||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
#### Actual behavior | ||
|
||
... | ||
|
||
#### Expected behavior | ||
|
||
... | ||
|
||
#### Code to reproduce | ||
|
||
```js | ||
... | ||
``` | ||
|
||
<!-- | ||
We encourage you to submit a pull request with a failing test: | ||
- This will make it more likely for us to prioritize your issue. | ||
- It's a good way to prove that the issue is related to Got and not your code. | ||
Example: https://github.com/avajs/ava/blob/master/docs/01-writing-tests.md#failing-tests | ||
--> | ||
|
||
#### Checklist | ||
|
||
* [ ] I have read the documentation. | ||
* [ ] I have tried my code with the latest version of Node.js and @breejs/later. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
|
||
name: "⭐ Feature request" | ||
about: Suggest an idea for Bree | ||
title: "\[feat] DESCRIPTIVE TITLE" | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### What problem are you trying to solve? | ||
|
||
... | ||
|
||
#### Describe the feature | ||
|
||
... | ||
|
||
<!-- Include a usage example of the feature. If the feature is currently possible with a workaround, include that too. --> | ||
|
||
#### Checklist | ||
|
||
* [ ] I have read the documentation and made sure this feature doesn't already exist. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
|
||
name: "❓ Question" | ||
about: Something is unclear or needs to be discussed | ||
title: "\[discussion] DESCRIPTIVE TITLE" | ||
labels: question | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### What would you like to discuss? | ||
|
||
... | ||
|
||
#### Checklist | ||
|
||
* [ ] I have read the documentation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test-coverage: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
node_version: | ||
- 10 | ||
- 12 | ||
- 14 | ||
- 16 | ||
|
||
name: Node ${{ matrix.node_version }} on ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node_version }} | ||
|
||
- name: Install yarn | ||
run: npm install -g yarn | ||
|
||
- name: Install dependencies | ||
run: yarn --frozen-lockfile | ||
|
||
- name: Run tests | ||
run: yarn test-coverage | ||
|
||
- name: Uninstall yarn | ||
if: always() | ||
run: npm uninstall -g yarn |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@breejs/later", | ||
"description": "Maintained fork of later. Determine later (or previous) occurrences of recurring schedules", | ||
"version": "4.0.3", | ||
"version": "4.1.0", | ||
"author": "BunKat <[email protected]>", | ||
"bugs": { | ||
"url": "https://github.com/breejs/later/issues", | ||
|
@@ -12,32 +12,32 @@ | |
"Nick Baugh <[email protected]> (http://niftylettuce.com/)", | ||
"yrambler2001 <[email protected]> (https://yrambler2001.me/)" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.10.5", | ||
"@babel/core": "^7.11.1", | ||
"@babel/plugin-transform-runtime": "^7.11.0", | ||
"@babel/preset-env": "^7.11.0", | ||
"@commitlint/cli": "latest", | ||
"@commitlint/config-conventional": "latest", | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/config-conventional": "^18.4.3", | ||
"babelify": "^10.0.0", | ||
"benchmark": "*", | ||
"benchmark": "^2.1.4", | ||
"browserify": "^16.5.2", | ||
"codecov": "latest", | ||
"cross-env": "latest", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^7.7.0", | ||
"eslint-config-xo-lass": "latest", | ||
"eslint-config-xo-lass": "^2.0.1", | ||
"eslint-plugin-compat": "^3.8.0", | ||
"eslint-plugin-node": "^11.1.0", | ||
"fixpack": "latest", | ||
"husky": "latest", | ||
"lint-staged": "latest", | ||
"mocha": "*", | ||
"nyc": "latest", | ||
"remark-cli": "latest", | ||
"remark-preset-github": "latest", | ||
"fixpack": "^4.0.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^15.1.0", | ||
"mocha": "^10.2.0", | ||
"nyc": "^15.1.0", | ||
"remark-cli": "11", | ||
"remark-preset-github": "^4.0.4", | ||
"rimraf": "^5.0.5", | ||
"semver": "^7.3.2", | ||
"should": ">=13.2.3", | ||
"should": "^13.2.3", | ||
"sinon": "^11.1.2", | ||
"tinyify": "^3.0.0", | ||
"xo": "^0.33.0" | ||
}, | ||
|
@@ -155,7 +155,7 @@ | |
"build:clean": "rimraf lib dist", | ||
"build:dist": "npm run browserify && npm run minify", | ||
"build:lib": "babel --config-file ./.lib.babelrc src --out-dir lib", | ||
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", | ||
"coverage": "nyc report --reporter=text-lcov > coverage.lcov", | ||
"lint": "yarn run lint:js && yarn run lint:md && yarn run lint:lib && yarn run lint:dist", | ||
"lint:dist": "eslint --no-inline-config -c .dist.eslintrc dist", | ||
"lint:js": "xo", | ||
|
@@ -164,7 +164,7 @@ | |
"minify": "cross-env NODE_ENV=production browserify src/index.js -o dist/later.min.js -s later -g [ babelify --configFile ./.dist.babelrc ] -p tinyify", | ||
"nyc": "cross-env NODE_ENV=test nyc mocha test/**/*-test.js --reporter dot", | ||
"pretest": "yarn run build && yarn run lint", | ||
"test": "cross-env NODE_ENV=test mocha test/**/*-test.js --reporter dot", | ||
"test": "cross-env NODE_ENV=test mocha test/**/*-test.js --reporter dot --exit", | ||
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test" | ||
}, | ||
"unpkg": "dist/later.min.js", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.