Skip to content

Commit feae5ac

Browse files
committed
Fix JSON syntax error in package.json
- Remove trailing comma after setup script - This was causing npm install to fail in GitHub Actions
1 parent 27092f7 commit feae5ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/catalog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "nodemon --exec ts-node src/index.ts",
99
"build": "tsc",
1010
"test": "jest",
11-
"setup": "./scripts/setup.sh",
11+
"setup": "./scripts/setup.sh"
1212
},
1313
"dependencies": {
1414
"express": "^4.18.2",

0 commit comments

Comments
 (0)