@toptal/davinci-ci 4.0.6 → 4.0.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1937](https://github.com/toptal/davinci/pull/1937) [`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f) Thanks [@dmaklygin](https://github.com/dmaklygin)! - ---
8
+
9
+ - apply identical formatting and success messages to all command logs.
10
+
11
+ - Updated dependencies [[`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f)]:
12
+ - @toptal/davinci-cli-shared@2.2.3
13
+
3
14
  ## 4.0.6
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-ci",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "description": "Continuos integrations tools for frontend projects",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@commitlint/cli": "^17.4.0",
40
40
  "@commitlint/config-conventional": "^17.1.0",
41
- "@toptal/davinci-cli-shared": "2.2.2",
41
+ "@toptal/davinci-cli-shared": "2.2.3",
42
42
  "danger": "^11.2.2",
43
43
  "markdown-table": "^2.0.0"
44
44
  },
@@ -22,7 +22,7 @@ const commandOptions = [
22
22
  ]
23
23
 
24
24
  const dangerCommand = options => {
25
- print.green('Running danger check...')
25
+ print.header('Running danger check')
26
26
 
27
27
  const { local, dangerfile, ...rest } = options
28
28