@toptal/davinci-engine 12.2.4 → 13.0.0
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,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 13.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#2633](https://github.com/toptal/davinci/pull/2633) [`bd08a93`](https://github.com/toptal/davinci/commit/bd08a9352e73fe136145b66c26eb7a1a24814aa4) Thanks [@javier-delgado](https://github.com/javier-delgado)!
|
|
8
|
+
Upgraded Tailwind to V4
|
|
9
|
+
- updated `tailwindcss` peer dependency from `^3.4.10` to `^4.2.1`
|
|
10
|
+
- updated `picasso` peer dependency
|
|
11
|
+
|
|
3
12
|
## 12.2.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-engine",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"description": "Build tool for frontend projects",
|
|
5
5
|
"author": "Toptal",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.MD",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@swc/plugin-styled-components": "^9.1.0",
|
|
46
46
|
"@toptal/davinci-cli-shared": "^2.6.1",
|
|
47
47
|
"@toptal/davinci-cloudflare-requests-handler": "0.1.2",
|
|
48
|
-
"@toptal/davinci-monorepo": "^12.1.
|
|
48
|
+
"@toptal/davinci-monorepo": "^12.1.2",
|
|
49
49
|
"@toptal/davinci-workspace-root": "^1.0.1",
|
|
50
50
|
"autoprefixer": "^10.4.15",
|
|
51
51
|
"babel-loader": "^8.2.3",
|
|
@@ -96,11 +96,13 @@
|
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"@jest/globals": "^29.7.0",
|
|
99
|
-
"tailwindcss": "^
|
|
99
|
+
"@tailwindcss/postcss": "^4.2.1",
|
|
100
|
+
"tailwindcss": "^4.2.1",
|
|
100
101
|
"typescript": "^4.8.4"
|
|
101
102
|
},
|
|
102
103
|
"peerDependencies": {
|
|
103
|
-
"tailwindcss": "^
|
|
104
|
+
"@tailwindcss/postcss": "^4.2.1",
|
|
105
|
+
"tailwindcss": "^4.2.1",
|
|
104
106
|
"typescript": "^4.8.4"
|
|
105
107
|
},
|
|
106
108
|
"engines": {
|
|
@@ -47,10 +47,8 @@ exports[`getCSSLoaders when tailwind.config.js exists returns an array with css-
|
|
|
47
47
|
"postcssOptions": {
|
|
48
48
|
"config": false,
|
|
49
49
|
"plugins": {
|
|
50
|
+
"@tailwindcss/postcss": {},
|
|
50
51
|
"autoprefixer": {},
|
|
51
|
-
"tailwindcss": {
|
|
52
|
-
"config": "tailwind.config.js",
|
|
53
|
-
},
|
|
54
52
|
},
|
|
55
53
|
},
|
|
56
54
|
},
|