Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
BCsabaEngine committed Oct 8, 2024
1 parent 8033ec3 commit e4995c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"fix": "npm run format:fix && npm run lint:fix",
"fix": "npm run format:fix && npm run lint:fix && npm run format:fix",
"npm:reinstall": "rm -rf ./node_modules && rm -f ./package-lock.json && npm i && npm i"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if (files.size === 0) {

console.log();
console.log('Translation to header file');
const longestFilename = [...files.keys()].reduce((p, c) => (Math.max(c.length, p)), 0);
const longestFilename = [...files.keys()].reduce((p, c) => Math.max(c.length, p), 0);
for (const [originalFilename, content] of files) {
const mime = lookup(originalFilename) || 'text/plain';
summary.filecount++;
Expand Down

0 comments on commit e4995c9

Please sign in to comment.