Skip to content

Commit 276779f

Browse files
committed
feat: the thing
1 parent 12d546d commit 276779f

File tree

8 files changed

+283
-21
lines changed

8 files changed

+283
-21
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
GITLAB_TOKEN=#your gitlab token goes here
2+
#TRUNCATE_REPOS=2 # this is for testing purposes only, to only clone the first 2 repos

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
repos/
2+
.DS_Store
23

34
# Logs
45
logs

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"start": "node out/index.js",
99
"build": "tsc",
10-
"dev": "node --experimental-strip-types --env-file=.env src/index.ts",
10+
"dev": "node --experimental-strip-types --env-file=.env src/index.ts | pino-pretty",
1111
"typecheck": "tsc --noEmit",
1212
"lint": "eslint . --ext .ts",
1313
"lint:fix": "eslint . --ext .ts --fix",
@@ -23,12 +23,15 @@
2323
"eslint": "^9.22.0",
2424
"eslint-config-prettier": "^10.1.1",
2525
"globals": "^16.0.0",
26+
"pino-pretty": "^13.0.0",
2627
"prettier": "3.5.3",
2728
"typescript": "^5.8.2",
2829
"typescript-eslint": "^8.26.1"
2930
},
3031
"dependencies": {
3132
"@gitbeaker/rest": "^42.1.0",
33+
"cron": "^4.1.0",
34+
"pino": "^9.6.0",
3235
"simple-git": "^3.27.0"
3336
}
3437
}

0 commit comments

Comments
 (0)