Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build updates, activate dependabot, remove Node 10 checks #35

Merged
merged 2 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: monthly
day: monday
open-pull-requests-limit: 10
target-branch: "main"
versioning-strategy: increase
allow:
- dependency-type: direct
labels:
- "build"

- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
day: monday
open-pull-requests-limit: 2
target-branch: "main"
labels:
- "build"
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ commit messaging follow the format

### Build Requirements
To setup your work environment you'll need to use
* [NodeJS version 10+](https://nodejs.org/)
* [Yarn 1.13+](https://yarnpkg.com)
* [NodeJS version 12+](https://nodejs.org/)
* [Yarn 1.22+](https://yarnpkg.com)
* And if you plan on making Docker contributions you may want to setup
- [Docker](https://docs.docker.com/engine/installation/)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ a delay to see how your codebase will handle loading scenarios with a balls slow

## Requirements
The basic requirements:
* [NodeJS version 10+](https://nodejs.org/)
* [NodeJS version 12+](https://nodejs.org/)
* Optionally your system could be running
- [Yarn 1.16+](https://yarnpkg.com), otherwise NPM should be adequate.
- [Yarn 1.22+](https://yarnpkg.com), otherwise NPM should be adequate.
- [Docker](https://docs.docker.com/engine/installation/)


Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"url": "https://github.com/cdcabrera/apidoc-mock/issues"
},
"engines": {
"node": ">=10.0.0"
"node": ">=12.0.0"
},
"bin": {
"mock": "./bin/cli.js"
Expand Down Expand Up @@ -79,28 +79,28 @@
"description": "API documentation with apiDoc."
},
"dependencies": {
"apidoc": "^0.26.0",
"apidoc": "^0.27.1",
"express": "^4.17.1",
"node-watch": "^0.7.1",
"winston": "^3.3.3",
"yargs": "^16.2.0"
"yargs": "^17.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint": "^7.26.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"standard-version": "^9.1.0"
"prettier": "^2.3.0",
"standard-version": "^9.3.0"
},
"resolutions": {
"**/eslint": "6.8.0"
Expand Down
5 changes: 5 additions & 0 deletions src/__tests__/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ Array [
"./.docs/fonts/glyphicons-halflings-regular.ttf",
"./.docs/fonts/glyphicons-halflings-regular.woff",
"./.docs/fonts/glyphicons-halflings-regular.woff2",
"./.docs/img/android-chrome-192x192.png",
"./.docs/img/android-chrome-512x512.png",
"./.docs/img/apple-touch-icon.png",
"./.docs/img/favicon-16x16.png",
"./.docs/img/favicon-32x32.png",
"./.docs/img/favicon.ico",
"./.docs/index.html",
"./.docs/locales/ca.js",
Expand Down
Loading