Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit ea3ee8a

Browse files
committed
fix: upgrade dependencies
1 parent b181574 commit ea3ee8a

9 files changed

+11863
-34
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ module.exports = {
1010
'@typescript-eslint/indent': ['error', 2, { SwitchCase: 1 }],
1111
'@typescript-eslint/explicit-function-return-type': 0,
1212
'capitalized-comments': 0,
13+
'@typescript-eslint/no-explicit-any': 0,
1314
'comma-dangle': ['error', 'always-multiline'],
1415
},
1516
};

.npmrc

-1
This file was deleted.

circle.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
steps:
77
- checkout
88
- restore_cache:
9-
key: dependency-cache-{{ checksum "package.json" }}
9+
key: dependency-cache-{{ checksum "package-lock.json" }}
1010
- run:
1111
name: npm-install
12-
command: npm install
12+
command: npm ci
1313
- save_cache:
14-
key: dependency-cache-{{ checksum "package.json" }}
14+
key: dependency-cache-{{ checksum "package-lock.json" }}
1515
paths:
16-
- ./node_modules
16+
- ~/.npm
1717
- run:
1818
name: test
1919
command: npm run test:ci
@@ -29,8 +29,8 @@ jobs:
2929
steps:
3030
- checkout
3131
- restore_cache:
32-
key: dependency-cache-{{ checksum "package.json" }}
33-
- run: npm install
32+
key: dependency-cache-{{ checksum "package-lock.json" }}
33+
- run: npm ci
3434
- run: npm run build
3535
- run: npm run semantic-release
3636

jest.config.js

-9
This file was deleted.

0 commit comments

Comments
 (0)