Skip to content

Commit

Permalink
chore: bump deps and lint fix (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Oct 4, 2023
1 parent 4f5b63c commit 448c81a
Show file tree
Hide file tree
Showing 5 changed files with 1,171 additions and 1,027 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ examples/express/express-example
examples/express/node_modules

# Editors
.vscode/
yarn-error.log
tsconfig.tsbuildinfo
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"eslint.format.enable": true,
"eslint.lintTask.enable": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.markdownlint": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"singleQuote": true
},
"dependencies": {
"@babel/generator": "7.18.2",
"@babel/parser": "7.18.4",
"@babel/types": "7.19.0",
"@babel/generator": "7.23.0",
"@babel/parser": "7.23.0",
"@babel/types": "7.23.0",
"chalk": "^4.1.2",
"fs-extra": "^9.1.0",
"globby": "^11.1.0",
Expand All @@ -35,26 +35,26 @@
"stream-meter": "^1.0.4"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@types/babel__generator": "7.6.4",
"@babel/core": "7.23.0",
"@types/babel__generator": "7.6.5",
"@types/fs-extra": "9.0.13",
"@types/is-core-module": "2.2.0",
"@types/minimist": "1.2.2",
"@types/multistream": "4.1.0",
"@types/node": "14.18.20",
"@types/resolve": "1.20.2",
"@types/stream-meter": "0.0.22",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.50.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"json-stable-stringify": "^1.0.1",
"lint-staged": "^10.5.4",
"mkdirp": "^1.0.4",
"prettier": "2.6.2",
"prettier": "3.0.3",
"rimraf": "^3.0.2",
"simple-git-hooks": ">=2.8.0",
"typescript": "4.7.2"
Expand Down
4 changes: 2 additions & 2 deletions prelude/diagnostic.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function humanSize(bytes) {
const args1 = Object.values(args);
console.log(
`fs.${name}`,
args1.filter((x) => typeof x === 'string')
args1.filter((x) => typeof x === 'string'),
);
return f.apply(this, args1);
};
Expand Down Expand Up @@ -133,4 +133,4 @@ function humanSize(bytes) {
wrap(fs, 'access');
}
}
})();
})();
Loading

0 comments on commit 448c81a

Please sign in to comment.