@toptal/davinci-cli-shared 2.2.2-alpha-fix-not-finding-davinci-config-f1c7f227.5 → 2.2.2
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 +8 -0
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1887](https://github.com/toptal/davinci/pull/1887) [`b3b691f4`](https://github.com/toptal/davinci/commit/b3b691f4bdfcd2c4d05133bb61c69c45bc3c06a6) Thanks [@augustobmoura](https://github.com/augustobmoura)! - ---
|
|
8
|
+
|
|
9
|
+
- guard agains NPE on empty metrics config file
|
|
10
|
+
|
|
3
11
|
## 2.2.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-cli-shared",
|
|
3
|
-
"version": "2.2.2
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Shared CLI code and CLI engine for davinci",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,21 +23,20 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"analytics-node": "^6.2.0",
|
|
25
25
|
"chalk": "^4.1.2",
|
|
26
|
-
"commander": "^10.0.0",
|
|
27
26
|
"execa": "^5.1.1",
|
|
28
27
|
"find-yarn-workspace-root": "^2.0.0",
|
|
29
|
-
"gradient-string": "^2.0.0",
|
|
30
28
|
"inquirer": "^8.2.0",
|
|
31
29
|
"isomorphic-git": "^1.21.0",
|
|
32
30
|
"js-yaml": "^4.1.0",
|
|
33
31
|
"lodash": "^4.17.21",
|
|
34
|
-
"ora": "^5.4.1",
|
|
35
32
|
"proper-lockfile": "^4.1.2",
|
|
36
33
|
"read-pkg-up": "7.0.1",
|
|
37
|
-
"semver": "^7.3.7"
|
|
34
|
+
"semver": "^7.3.7",
|
|
35
|
+
"commander": "^10.0.0",
|
|
36
|
+
"gradient-string": "^2.0.0",
|
|
37
|
+
"ora": "^5.4.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@jest/globals": "^29.4.2"
|
|
41
|
-
}
|
|
42
|
-
"gitHead": "f1c7f227cc37aeceddde14be2f9212d16fbb19c7"
|
|
41
|
+
}
|
|
43
42
|
}
|