@toptal/davinci-code 2.0.20-alpha-feature-pnpm-migration-tw-3-optimization-fe041038.32 → 3.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 +22 -0
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#2643](https://github.com/toptal/davinci/pull/2643) [`ab9666f`](https://github.com/toptal/davinci/commit/ab9666f999e7a610f6068e0145200257d8511b46) Thanks [@rocodesign](https://github.com/rocodesign)!
|
|
8
|
+
Migrate package manager from Yarn to pnpm
|
|
9
|
+
**WHAT (breaking change):**
|
|
10
|
+
- switch package manager from Yarn to pnpm across the entire Davinci monorepo
|
|
11
|
+
- add `pnpm-workspace.yaml`, `.npmrc`, and `packageManager` field for corepack support
|
|
12
|
+
- convert Yarn `resolutions` to `pnpm.overrides` in root `package.json`
|
|
13
|
+
- update lerna `npmClient` from `yarn` to `pnpm`
|
|
14
|
+
- replace `yarn` with `pnpm` in root scripts (postinstall, test, test:unit:update)
|
|
15
|
+
**HOW to update:**
|
|
16
|
+
- install pnpm (`corepack enable` or `npm install -g pnpm@10.6.1`)
|
|
17
|
+
- replace `yarn install` with `pnpm install` in local workflows
|
|
18
|
+
- replace `yarn <script>` with `pnpm <script>` when running commands
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [[`ab9666f`](https://github.com/toptal/davinci/commit/ab9666f999e7a610f6068e0145200257d8511b46)]:
|
|
23
|
+
- @toptal/davinci-cli-shared@3.0.0
|
|
24
|
+
|
|
3
25
|
## 2.0.19
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-code",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"code",
|
|
6
6
|
"generator",
|
|
@@ -23,14 +23,11 @@
|
|
|
23
23
|
"docs",
|
|
24
24
|
"CHANGELOG.md"
|
|
25
25
|
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' pnpm jest"
|
|
28
|
-
},
|
|
29
26
|
"dependencies": {
|
|
30
|
-
"@toptal/davinci-cli-shared": "^2.6.1-alpha-feature-pnpm-migration-tw-3-optimization-fe041038.32+fe041038",
|
|
31
27
|
"hygen": "^6.2.11",
|
|
32
28
|
"lodash.camelcase": "^4.3.0",
|
|
33
|
-
"lodash.kebabcase": "^4.1.1"
|
|
29
|
+
"lodash.kebabcase": "^4.1.1",
|
|
30
|
+
"@toptal/davinci-cli-shared": "^3.0.0"
|
|
34
31
|
},
|
|
35
32
|
"devDependencies": {
|
|
36
33
|
"@jest/globals": "^29.7.0"
|
|
@@ -38,5 +35,7 @@
|
|
|
38
35
|
"publishConfig": {
|
|
39
36
|
"access": "public"
|
|
40
37
|
},
|
|
41
|
-
"
|
|
42
|
-
|
|
38
|
+
"scripts": {
|
|
39
|
+
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' pnpm jest"
|
|
40
|
+
}
|
|
41
|
+
}
|