@vue-vine/eslint-parser 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +10 -10
package/dist/index.js CHANGED
@@ -40,7 +40,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
40
40
  //#endregion
41
41
  //#region package.json
42
42
  var name = "@vue-vine/eslint-parser";
43
- var version = "1.1.0";
43
+ var version = "1.1.1";
44
44
 
45
45
  //#endregion
46
46
  //#region src/ast/errors.ts
@@ -10511,7 +10511,8 @@ function parseForESLint(code, parserOptions) {
10511
10511
  comment: true,
10512
10512
  loc: true,
10513
10513
  range: true,
10514
- tokens: true
10514
+ tokens: true,
10515
+ ecmaVersion: "latest"
10515
10516
  }, parserOptions || {});
10516
10517
  const { ast, services, scopeManager, visitorKeys } = runParse(code, options);
10517
10518
  return {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-vine/eslint-parser",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "description": "ESLint parser for Vue Vine",
6
6
  "author": "ShenQingchuan",
7
7
  "license": "MIT",
@@ -29,24 +29,24 @@
29
29
  "dist"
30
30
  ],
31
31
  "dependencies": {
32
- "@typescript-eslint/parser": "~8.31.0",
33
- "@typescript-eslint/scope-manager": "~8.31.0",
34
- "@typescript-eslint/typescript-estree": "~8.31.0",
35
- "debug": "^4.4.0",
32
+ "@typescript-eslint/parser": "~8.32.1",
33
+ "@typescript-eslint/scope-manager": "~8.32.1",
34
+ "@typescript-eslint/typescript-estree": "~8.32.1",
35
+ "debug": "^4.4.1",
36
36
  "eslint-scope": "^8.3.0",
37
37
  "espree": "^10.3.0",
38
38
  "line-column": "^1.0.2",
39
- "semver": "^7.7.1"
39
+ "semver": "^7.7.2"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/debug": "^4.1.12",
43
43
  "@types/estree": "^1.0.7",
44
44
  "@types/line-column": "^1.0.2",
45
- "@types/lodash": "^4.17.16",
46
- "@types/node": "^22.15.0",
45
+ "@types/lodash": "^4.17.17",
46
+ "@types/node": "^22.15.21",
47
47
  "@types/semver": "^7.7.0",
48
- "@typescript-eslint/types": "~8.31.0",
49
- "eslint": "~9.25.1",
48
+ "@typescript-eslint/types": "~8.33.0",
49
+ "eslint": "~9.27.0",
50
50
  "eslint-visitor-keys": "^4.2.0",
51
51
  "lodash": "^4.17.21"
52
52
  },