Add typescript implementation of GL sync with new group nesting
parent
a6f33d72
No related branches found
No related tags found
Showing
- package-lock.json 462 additions, 500 deletionspackage-lock.json
- package.json 9 additions, 2 deletionspackage.json
- src/EclipseAPI.js 2 additions, 2 deletionssrc/EclipseAPI.js
- src/GitWrapper.js 1 addition, 1 deletionsrc/GitWrapper.js
- src/GitlabSync.js 20 additions, 525 deletionssrc/GitlabSync.js
- src/SecretReader.js 1 addition, 1 deletionsrc/SecretReader.js
- src/eclipse/EclipseAPI.ts 288 additions, 0 deletionssrc/eclipse/EclipseAPI.ts
- src/gl/AxiosRequester.ts 21 additions, 0 deletionssrc/gl/AxiosRequester.ts
- src/gl/GitlabSync.ts 68 additions, 0 deletionssrc/gl/GitlabSync.ts
- src/gl/GitlabSyncRunner.ts 714 additions, 0 deletionssrc/gl/GitlabSyncRunner.ts
- src/helpers/SecretReader.ts 88 additions, 0 deletionssrc/helpers/SecretReader.ts
- src/helpers/logger.ts 42 additions, 0 deletionssrc/helpers/logger.ts
- src/interfaces/EclipseApi.ts 100 additions, 0 deletionssrc/interfaces/EclipseApi.ts
- src/logger.js 3 additions, 3 deletionssrc/logger.js
- tsconfig.json 14 additions, 0 deletionstsconfig.json
This diff is collapsed.
... | ... | @@ -20,10 +20,13 @@ |
}, | ||
"homepage": "https://github.com/eclipsefdn/eclipsefdn-github-sync#readme", | ||
"dependencies": { | ||
"@gitbeaker/node": "35.6.0", | ||
"@gitbeaker/core": "^35.6.0", | ||
"@gitbeaker/node": "github:autumnfound/gitbeaker#malowe/master/2483", | ||
"@octokit/plugin-retry": "^3.0.3", | ||
"@octokit/plugin-throttling": "^3.3.0", | ||
"@octokit/rest": "^18.0.3", | ||
"@types/node": "^17.0.32", | ||
"@types/yargs": "^17.0.10", | ||
"axios": "^0.21.4", | ||
"flat-cache": "^2.0.1", | ||
"nodemailer": "^6.5.0", | ||
... | ... | @@ -36,11 +39,15 @@ |
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "^7.17.0", | ||
"@types/parse-link-header": "^2.0.0", | ||
"@types/simple-oauth2": "^4.1.1", | ||
"@types/uuid": "^8.3.4", | ||
"chai": "^4.2.0", | ||
"eslint": "^7.5.0", | ||
"eslint-config-strongloop": "^2.1.0", | ||
"faker": "^5.5.3", | ||
"mocha": "^7.0.1", | ||
"sinon": "^10.0.0" | ||
"sinon": "^10.0.0", | ||
"typescript": "^4.6.4" | ||
} | ||
} |
src/eclipse/EclipseAPI.ts
0 → 100644
src/gl/AxiosRequester.ts
0 → 100644
src/gl/GitlabSync.ts
0 → 100644
src/gl/GitlabSyncRunner.ts
0 → 100644
This diff is collapsed.
src/helpers/SecretReader.ts
0 → 100644
src/helpers/logger.ts
0 → 100644
src/interfaces/EclipseApi.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment