Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Few dependency fixes #264

Merged
merged 3 commits into from
Jan 6, 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
10 changes: 0 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ workflows:
static_analysis:
jobs:
- test
- size:
requires:
- test
- coverage:
requires:
- test
Expand Down Expand Up @@ -100,13 +97,6 @@ jobs:
- checkout
- attach_workspace: { at: . }
- run: yarn run report-coverage
size:
docker:
- image: circleci/node:10-browsers
steps:
- checkout
- attach_workspace: { at: . }
- run: yarn run size
snyk:
docker:
- image: circleci/node:10-browsers
Expand Down
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,9 @@
"engines": {
"node": ">=4"
},
"size-limit": [
{
"limit": "25 KB",
"path": "index.js"
}
],
"scripts": {
"circle-lint": ".buildscript/circle.sh",
"dependencies": "yarn",
"size": "size-limit",
"test": "standard && nyc ava --timeout=20s&& .buildscript/e2e.sh",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"np": "np --no-publish",
Expand Down Expand Up @@ -61,8 +54,12 @@
"nyc": "^14.1.1",
"pify": "^4.0.1",
"sinon": "^7.3.2",
"size-limit": "^1.3.5",
"snyk": "^1.171.1",
"standard": "^12.0.1"
},
"resolutions": {
"kind-of": "^6.0.3",
"lodash": "^4.17.19",
"set-value": "^2.0.1"
}
}
Loading