Skip to content

Commit

Permalink
Use shell expansion for glob patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
hulkish committed Dec 30, 2023
1 parent 7bbcb75 commit b208f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "Easy as cake e-mail sending from your Node.js applications",
"main": "lib/nodemailer.js",
"scripts": {
"test": "node --test --test-concurrency=1 'test/**/*.test.js' 'test/**/*-test.js'",
"test:coverage": "c8 node --test --test-concurrency=1 'test/**/*.test.js' 'test/**/*-test.js'",
"test": "node --test --test-concurrency=1 test/**/*.test.js test/**/*-test.js",
"test:coverage": "c8 node --test --test-concurrency=1 test/**/*.test.js test/**/*-test.js",
"lint": "eslint .",
"update": "rm -rf node_modules/ package-lock.json && ncu -u && npm install"
},
Expand Down

0 comments on commit b208f8f

Please sign in to comment.