This uses a script to add the new `stargazers_count` and `updated_at` to the scenario files. This is done by using the GitHub API to get the information for each repo and then updating the scenario file. The `updated_at` values are not completely representative since they are the `updated_at` at time of running the script, rather than at the time the variant analysis was run. However, this should not really matter in practice. An alternative for scanned repositories might be getting the creation time of the `database_commit_sha` commit.
11 lines
201 B
JSON
11 lines
201 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../tsconfig.json",
|
|
"include": ["**/*.ts"],
|
|
"exclude": [],
|
|
"compilerOptions": {
|
|
"rootDir": "..",
|
|
"noEmit": true
|
|
}
|
|
}
|