@toptal/eslint-plugin-davinci 5.7.1 → 6.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,27 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.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-workspace-root@2.0.0
24
+
3
25
  ## 5.7.1
4
26
 
5
27
  ### Patch Changes
package/README.md CHANGED
@@ -9,7 +9,7 @@ all rules in this plugin are included.
9
9
 
10
10
  ## Usage
11
11
 
12
- Use it by installing `yarn add @toptal/davinci` in your project.
12
+ Use it by installing `pnpm add @toptal/davinci` in your project.
13
13
 
14
14
  ## Supported Rules
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/eslint-plugin-davinci",
3
- "version": "5.7.1",
3
+ "version": "6.0.0",
4
4
  "description": "davinci eslint rules",
5
5
  "repository": "toptal/davinci.git",
6
6
  "author": "Toptal",
@@ -12,11 +12,7 @@
12
12
  "lib",
13
13
  "CHANGELOG.md"
14
14
  ],
15
- "scripts": {
16
- "test": "jest --runInBand"
17
- },
18
15
  "dependencies": {
19
- "@toptal/davinci-workspace-root": "^1.0.1",
20
16
  "eslint": "^8.34.0",
21
17
  "eslint-plugin-markdownlint": "^0.4.0",
22
18
  "eslint-plugin-sort-keys-fix": "^1.1.2",
@@ -27,7 +23,8 @@
27
23
  "micromatch": "^4.0.8",
28
24
  "require-json5": "^1.3.0",
29
25
  "requireindex": "^1.2.0",
30
- "resolve-ts-aliases": "^1.0.1"
26
+ "resolve-ts-aliases": "^1.0.1",
27
+ "@toptal/davinci-workspace-root": "^2.0.0"
31
28
  },
32
29
  "directories": {
33
30
  "lib": "lib",
@@ -35,5 +32,8 @@
35
32
  },
36
33
  "publishConfig": {
37
34
  "access": "public"
35
+ },
36
+ "scripts": {
37
+ "test": "jest --runInBand"
38
38
  }
39
- }
39
+ }