@toptal/davinci-cli-shared 2.6.1-alpha-ff-65-0dda0627.23 → 2.6.1
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 +10 -0
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2639](https://github.com/toptal/davinci/pull/2639) [`7e4896d`](https://github.com/toptal/davinci/commit/7e4896d4db27e868ddce2bae9002699d5d26a65f) Thanks [@rocodesign](https://github.com/rocodesign)!
|
|
8
|
+
- add the new `@toptal/davinci-workspace-root` package with Yarn and pnpm workspace root detection, workspace membership checks, and TypeScript declarations
|
|
9
|
+
- replace `find-yarn-workspace-root` usage across Davinci packages with `@toptal/davinci-workspace-root` to make workspace root resolution package-manager agnostic
|
|
10
|
+
- Updated dependencies [[`7e4896d`](https://github.com/toptal/davinci/commit/7e4896d4db27e868ddce2bae9002699d5d26a65f)]:
|
|
11
|
+
- @toptal/davinci-workspace-root@1.0.1
|
|
12
|
+
|
|
3
13
|
## 2.6.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-cli-shared",
|
|
3
|
-
"version": "2.6.1
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "Shared CLI code and CLI engine for davinci",
|
|
5
5
|
"author": "Toptal",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.MD",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@segment/analytics-node": "^2.1.3",
|
|
22
|
-
"@toptal/davinci-workspace-root": "1.0.1
|
|
22
|
+
"@toptal/davinci-workspace-root": "^1.0.1",
|
|
23
23
|
"chalk": "^4.1.2",
|
|
24
24
|
"commander": "^11.0.0",
|
|
25
25
|
"execa": "^5.1.1",
|
|
@@ -39,6 +39,5 @@
|
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
|
-
}
|
|
43
|
-
"gitHead": "0dda06271bbece67941c41de8cef2bc09de516c2"
|
|
42
|
+
}
|
|
44
43
|
}
|