@toptal/davinci-monorepo 8.3.3-alpha-fx-4452-add-tailwindcss-in-davinci-01ccaca7.35 → 8.3.4-alpha-fx-4497-storybook-1c02d54a.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 +7 -0
- package/package.json +16 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @toptal/davinci-monorepo
|
|
2
2
|
|
|
3
|
+
## 8.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2215](https://github.com/toptal/davinci/pull/2215) [`7736531e`](https://github.com/toptal/davinci/commit/7736531ebe7d77990f096136f1662c446362428b) Thanks [@TomasSlama](https://github.com/TomasSlama)!
|
|
8
|
+
- bump davinci-cli-shared
|
|
9
|
+
|
|
3
10
|
## 8.3.2
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-monorepo",
|
|
3
|
-
"version": "8.3.
|
|
4
|
-
"description": "Monorepo utility tools",
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
3
|
+
"version": "8.3.4-alpha-fx-4497-storybook-1c02d54a.1+1c02d54a",
|
|
8
4
|
"keywords": [
|
|
9
5
|
"lint"
|
|
10
6
|
],
|
|
7
|
+
"description": "Monorepo utility tools",
|
|
8
|
+
"repository": "toptal/davinci.git",
|
|
11
9
|
"author": "Toptal",
|
|
12
|
-
"homepage": "https://github.com/toptal/davinci/tree/master/packages/monorepo#readme",
|
|
13
10
|
"license": "SEE LICENSE IN LICENSE.MD",
|
|
11
|
+
"bugs": "https://github.com/toptal/davinci/issues",
|
|
12
|
+
"homepage": "https://github.com/toptal/davinci/tree/master/packages/monorepo#readme",
|
|
13
|
+
"bin": {
|
|
14
|
+
"davinci-monorepo": "bin/davinci-monorepo.js"
|
|
15
|
+
},
|
|
14
16
|
"type": "module",
|
|
15
17
|
"exports": "./src/index.js",
|
|
16
18
|
"files": [
|
|
@@ -19,40 +21,33 @@
|
|
|
19
21
|
"docs",
|
|
20
22
|
"CHANGELOG.md"
|
|
21
23
|
],
|
|
22
|
-
"bin": {
|
|
23
|
-
"davinci-monorepo": "bin/davinci-monorepo.js"
|
|
24
|
-
},
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/toptal/davinci.git"
|
|
28
|
-
},
|
|
29
24
|
"scripts": {
|
|
30
25
|
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' yarn jest"
|
|
31
26
|
},
|
|
32
|
-
"bugs": {
|
|
33
|
-
"url": "https://github.com/toptal/davinci/issues"
|
|
34
|
-
},
|
|
35
27
|
"dependencies": {
|
|
36
28
|
"@nodelib/fs.walk": "^1.2.6",
|
|
37
29
|
"@oclif/core": "^1.16.1",
|
|
38
|
-
"@toptal/davinci-cli-shared": "2.3.
|
|
30
|
+
"@toptal/davinci-cli-shared": "2.3.10-alpha-fx-4497-storybook-1c02d54a.8+1c02d54a",
|
|
39
31
|
"chalk": "^4.1.2",
|
|
40
32
|
"codeowners": "5.1.1",
|
|
41
33
|
"dependency-cruiser": "^12.5.0",
|
|
42
34
|
"ervy": "^1.0.7",
|
|
43
35
|
"execa": "^5.1.1",
|
|
44
|
-
"find-up": "5.0.0",
|
|
36
|
+
"find-up": "^5.0.0",
|
|
45
37
|
"find-yarn-workspace-root": "^2.0.0",
|
|
46
38
|
"glob": "^8.0.3",
|
|
47
39
|
"ignore": "^5.2.0",
|
|
48
40
|
"is-directory": "^0.3.1",
|
|
49
|
-
"lodash": "4.17.21",
|
|
41
|
+
"lodash": "^4.17.21",
|
|
50
42
|
"ora": "^5.4.1",
|
|
51
43
|
"ramda": "^0.28.0",
|
|
52
44
|
"true-case-path": "^1.0.3"
|
|
53
45
|
},
|
|
54
46
|
"devDependencies": {
|
|
55
|
-
"@jest/globals": "^29.
|
|
47
|
+
"@jest/globals": "^29.7.0"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
56
51
|
},
|
|
57
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "1c02d54a78ae5071678a0fed9a7eb172291ce0fe"
|
|
58
53
|
}
|