Merge pull request #44 from cse110-fa22-group29/fix-package.json

Fix scripts in package.json for correct recursive calling
This commit is contained in:
rheabhutada02 2022-11-09 17:52:23 -08:00 committed by GitHub
commit 4e2e8bb496
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,8 +2,8 @@
"name": "food-journal",
"version": "1.0.0",
"scripts": {
"test": "mocha --recursive **/*.test.js",
"lint": "eslint **/*.js",
"test": "mocha --recursive './{,!(node_modules)/**}/*.test.js'",
"lint": "eslint '**/*.js'",
"fix-style": "eslint --fix **/*.js"
},
"devDependencies": {