coc-pyright 1.1.293 → 1.1.295

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 (3) hide show
  1. package/diff.mjs +25 -0
  2. package/lib/index.js +6187 -5480
  3. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coc-pyright",
3
- "version": "1.1.293",
3
+ "version": "1.1.295",
4
4
  "description": "Pyright extension for coc.nvim, static type checker for Python",
5
5
  "author": "Heyward Fann <fannheyward@gmail.com>",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  "workspaceContains:pyrightconfig.json"
29
29
  ],
30
30
  "scripts": {
31
- "schema": "curl -o schemas/pyrightconfig.schema.json https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json && node diff.js",
31
+ "schema": "curl -o schemas/pyrightconfig.schema.json https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json && node diff.mjs",
32
32
  "clean": "rimraf lib",
33
33
  "lint": "eslint src --ext ts",
34
34
  "build": "node esbuild.js",
@@ -44,7 +44,7 @@
44
44
  "@types/which": "^2.0.0",
45
45
  "@typescript-eslint/eslint-plugin": "^5.6.0",
46
46
  "@typescript-eslint/parser": "^5.6.0",
47
- "@zzzen/pyright-internal": "^1.2.0-dev.20230205",
47
+ "@zzzen/pyright-internal": "^1.2.0-dev.20230226",
48
48
  "coc.nvim": "^0.0.82",
49
49
  "diff-match-patch": "^1.0.5",
50
50
  "esbuild": "^0.16.12",
@@ -1537,6 +1537,6 @@
1537
1537
  ]
1538
1538
  },
1539
1539
  "dependencies": {
1540
- "pyright": "^1.1.293"
1540
+ "pyright": "^1.1.295"
1541
1541
  }
1542
1542
  }