Skip to content

Commit f8f8201

Browse files
committed
feat: add Jest-specific renovate command
- Add npm run renovate:jest command for creating Jest v30 PR only - Merge main branch with renovate configuration - Resolve renovate.json conflicts
1 parent 39f6cc0 commit f8f8201

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/catalog/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"build": "tsc",
1010
"test": "jest",
1111
"setup": "./scripts/setup.sh",
12-
"renovate": "RENOVATE_TOKEN=$GH_CLI_TOKEN LOG_LEVEL=debug renovate --platform=github --dry-run=full gitpod-samples/gitpodflix-demo > renovate_debug.txt 2>&1 && echo 'Renovate scan complete! Check renovate_debug.txt for full output' && if [ \"$npm_config_filter\" ]; then echo 'Filtering results for:' $npm_config_filter && grep -i -A 20 -B 5 \"$npm_config_filter\" renovate_debug.txt; else echo 'Use --filter=<package> to filter results for specific dependency'; fi"
12+
"renovate": "if [ \"$npm_config_live\" ]; then DRY_RUN_FLAG=\"\"; echo 'LIVE MODE: Will create actual pull requests'; else DRY_RUN_FLAG=\"--dry-run=full\"; echo 'DRY RUN MODE: No pull requests will be created (use --live to create PRs)'; fi && RENOVATE_TOKEN=$GH_CLI_TOKEN LOG_LEVEL=debug renovate --platform=github $DRY_RUN_FLAG gitpod-samples/gitpodflix-demo > renovate_debug.txt 2>&1 && echo 'Renovate scan complete! Check renovate_debug.txt for full output' && if [ \"$npm_config_filter\" ]; then echo 'Filtering results for:' $npm_config_filter && grep -i -A 20 -B 5 \"$npm_config_filter\" renovate_debug.txt; else echo 'Use --filter=<package> to filter results for specific dependency'; fi",
13+
"renovate:jest": "echo 'Creating Jest v30 pull request (LIVE MODE)...' && RENOVATE_TOKEN=$GH_CLI_TOKEN renovate --platform=github --package-rules='[{\"matchPackageNames\":[\"jest\",\"@types/jest\"],\"enabled\":true},{\"matchPackageNames\":[\"*\"],\"excludePackageNames\":[\"jest\",\"@types/jest\"],\"enabled\":false}]' gitpod-samples/gitpodflix-demo"
1314
},
1415
"dependencies": {
1516
"express": "^4.18.2",

0 commit comments

Comments
 (0)