@toptal/davinci-monorepo 8.1.4-alpha-CRT-5891-create-coverage-command-c72932eb.4 → 8.1.4-alpha-CRT-5891-create-coverage-command-3ad3dcfd.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-monorepo",
3
- "version": "8.1.4-alpha-CRT-5891-create-coverage-command-c72932eb.4+c72932eb",
3
+ "version": "8.1.4-alpha-CRT-5891-create-coverage-command-3ad3dcfd.4+3ad3dcfd",
4
4
  "description": "Monorepo utility tools",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@nodelib/fs.walk": "^1.2.6",
37
37
  "@oclif/core": "^1.16.1",
38
- "@toptal/davinci-cli-shared": "2.3.1-alpha-CRT-5891-create-coverage-command-c72932eb.36+c72932eb",
38
+ "@toptal/davinci-cli-shared": "2.3.1-alpha-CRT-5891-create-coverage-command-3ad3dcfd.36+3ad3dcfd",
39
39
  "chalk": "^4.1.2",
40
40
  "codeowners": "5.1.1",
41
41
  "commander": "^10.0.0",
@@ -55,5 +55,5 @@
55
55
  "devDependencies": {
56
56
  "@jest/globals": "^29.4.2"
57
57
  },
58
- "gitHead": "c72932ebed3392a4ffb196fb2e6a21b9c5e8c3f1"
58
+ "gitHead": "3ad3dcfdfe83b96377701fd4b2534f7c209ca320"
59
59
  }
@@ -47,7 +47,7 @@ const generateTeamCoverage = async options => {
47
47
  }
48
48
 
49
49
  for await (const team of teams) {
50
- print.gray('Team coverage: ', team)
50
+ print.grey('Team coverage: ', team)
51
51
 
52
52
  const sanitizedTeam = sanitizeTeamName(team)
53
53
  const sanitizedTeamPath = path.join(TEAMS_COVERAGE_PATH, sanitizedTeam)
@@ -77,7 +77,7 @@ const getAllTeams = codeowners => {
77
77
  // eslint-disable-next-line id-length
78
78
  .filter((v, i, a) => a.indexOf(v) === i)
79
79
 
80
- print.gray('Teams: ', uniqueTeams)
80
+ print.grey('Teams: ', uniqueTeams)
81
81
 
82
82
  return uniqueTeams
83
83
  }