Skip to content

Commit

Permalink
fix: remove need to save ports used list to file system
Browse files Browse the repository at this point in the history
Before the previously used ports were saved to a config file written
to the file system by the `conf` package. This replaces that with the
built-in `Set` functionality that keeps it in memory and removes a
dependency.
  • Loading branch information
EvanLovely committed Feb 24, 2020
1 parent 1702b56 commit 71285ab
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 198 deletions.
10 changes: 3 additions & 7 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
{
"extends": [
"airbnb",
"plugin:jest/recommended"
],
"plugins": [
"jest"
],
"extends": ["airbnb", "plugin:jest/recommended"],
"plugins": ["jest"],
"env": {
"jest/globals": true
},
"rules": {
"no-console": "off",
"no-await-in-loop": "off",
"no-plusplus": [
"error",
{
Expand Down
180 changes: 17 additions & 163 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"fs-extra": "^7.0.1",
"node-fetch": "^2.1.2",
"sleep-promise": "^8.0.1",
"conf": "^5.0.0",
"get-port": "^5.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit 71285ab

Please sign in to comment.