Skip to content

Commit e3e4554

Browse files
committed
chore: update packages, mrm configs
1 parent f203068 commit e3e4554

File tree

13 files changed

+2268
-1251
lines changed

13 files changed

+2268
-1251
lines changed
File renamed without changes.

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build_latest:
4+
docker:
5+
- image: circleci/node:latest
6+
working_directory: ~/app
7+
steps:
8+
- checkout
9+
- restore_cache:
10+
keys:
11+
- v1-dependencies-{{ checksum "package.json" }}
12+
- v1-dependencies-
13+
- run: npm install
14+
- save_cache:
15+
paths:
16+
- node_modules
17+
key: v1-dependencies-{{ checksum "package.json" }}
18+
- run: npm test
19+
workflows:
20+
version: 2
21+
workflow:
22+
jobs:
23+
- build_latest

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 17 deletions
This file was deleted.
File renamed without changes.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ _Put an `x` in the boxes that apply_
1818

1919
_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._
2020

21-
- [ ] I have read the [CONTRIBUTING](https://github.com/bitkidd/adonis-credentials/blob/master/CONTRIBUTING.md) doc
21+
- [ ] I have read the [CONTRIBUTING](https://github.com/bitkidd/adonis-credentials/blob/master/.github/CONTRIBUTING.md) doc
2222
- [ ] Lint and unit tests pass locally with my changes
2323
- [ ] I have added tests that prove my fix is effective or that my feature works.
2424
- [ ] I have added necessary documentation (if appropriate)

.github/stale.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
node-version:
11-
- 14.x
12-
- 16.x
11+
- 17.x
1312
steps:
1413
- uses: actions/checkout@v2
1514
- name: Use Node.js ${{ matrix.node-version }}

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)