@toptal/davinci-cli-shared 2.6.1-alpha-ff-64-af69159e.42 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +3 -20
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-alpha-ff-64-af69159e.42+af69159e",
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-alpha-ff-64-af69159e.2619+af69159e",
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",
@@ -37,24 +37,7 @@
37
37
  "devDependencies": {
38
38
  "@jest/globals": "^29.7.0"
39
39
  },
40
- "peerDependencies": {
41
- "@toptal/davinci-engine": "*",
42
- "@toptal/davinci-qa": "*",
43
- "@toptal/davinci-syntax": "*"
44
- },
45
- "peerDependenciesMeta": {
46
- "@toptal/davinci-qa": {
47
- "optional": true
48
- },
49
- "@toptal/davinci-engine": {
50
- "optional": true
51
- },
52
- "@toptal/davinci-syntax": {
53
- "optional": true
54
- }
55
- },
56
40
  "publishConfig": {
57
41
  "access": "public"
58
- },
59
- "gitHead": "af69159eeae7c2755ac9a2385cadb37b134d4e11"
42
+ }
60
43
  }