Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelGirodon committed Nov 9, 2024
1 parent 6a3bfba commit b9ee49d
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 70 deletions.
145 changes: 81 additions & 64 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "module",
"scripts": {
"build": "ncc build index.js",
"lint": "eslint",
"lint": "eslint src test *.js",
"test": "mocha src",
"test:e2e": "mocha test",
"test:ci": "c8 -r cobertura --all --src src -x \"**/*.test.js\" -x \"**/types.js\" mocha -R mocha-junit-reporter src test || exit 0"
Expand Down Expand Up @@ -36,12 +36,12 @@
"@actions/glob": "^0.5.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@eslint/js": "^9.14.0",
"@vercel/ncc": "^0.38.2",
"c8": "^10.1.2",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"mocha": "^10.7.3",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.2.1"
}
}
2 changes: 1 addition & 1 deletion src/util/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as glob from '@actions/glob';
* Returns files matching the glob patterns, sorted by ascending depth
* and name, excluding some common unwanted directories from the search.
* @param {string[]} patterns Glob patterns
* @return {Promise<string[]>} Files sorted by the nearest
* @returns {Promise<string[]>} Files sorted by the nearest
*/
export async function globNearest(patterns) {
const safePatterns = [
Expand Down

0 comments on commit b9ee49d

Please sign in to comment.