immosquare-cleaner 0.1.40 → 0.1.41

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/node_modules/@eslint/config-array/README.md +9 -3
  4. data/node_modules/@eslint/config-array/dist/cjs/index.cjs +1 -0
  5. data/node_modules/@eslint/config-array/dist/esm/index.js +1 -0
  6. data/node_modules/@eslint/config-array/package.json +2 -2
  7. data/node_modules/@eslint/eslintrc/node_modules/espree/LICENSE +25 -0
  8. data/node_modules/@eslint/eslintrc/node_modules/espree/README.md +244 -0
  9. data/node_modules/@eslint/eslintrc/node_modules/espree/dist/espree.cjs +883 -0
  10. data/node_modules/@eslint/eslintrc/node_modules/espree/espree.js +177 -0
  11. data/node_modules/@eslint/eslintrc/node_modules/espree/lib/espree.js +349 -0
  12. data/node_modules/@eslint/eslintrc/node_modules/espree/lib/features.js +27 -0
  13. data/node_modules/@eslint/eslintrc/node_modules/espree/lib/options.js +123 -0
  14. data/node_modules/@eslint/eslintrc/node_modules/espree/lib/token-translator.js +263 -0
  15. data/node_modules/@eslint/eslintrc/node_modules/espree/lib/version.js +3 -0
  16. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/CHANGELOG.md +880 -0
  17. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/LICENSE +21 -0
  18. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/README.md +283 -0
  19. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/bin/acorn +4 -0
  20. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/dist/acorn.d.mts +857 -0
  21. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/dist/acorn.d.ts +857 -0
  22. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/dist/acorn.js +6002 -0
  23. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/dist/acorn.mjs +5973 -0
  24. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/dist/bin.js +90 -0
  25. data/node_modules/@eslint/eslintrc/node_modules/espree/node_modules/acorn/package.json +50 -0
  26. data/node_modules/@eslint/eslintrc/node_modules/espree/package.json +86 -0
  27. data/node_modules/@eslint/js/package.json +1 -1
  28. data/node_modules/@eslint-community/regexpp/index.d.ts +19 -5
  29. data/node_modules/@eslint-community/regexpp/index.js +138 -17
  30. data/node_modules/@eslint-community/regexpp/index.js.map +1 -1
  31. data/node_modules/@eslint-community/regexpp/index.mjs +138 -17
  32. data/node_modules/@eslint-community/regexpp/index.mjs.map +1 -1
  33. data/node_modules/@eslint-community/regexpp/package.json +1 -3
  34. data/node_modules/acorn/CHANGELOG.md +24 -0
  35. data/node_modules/acorn/README.md +5 -6
  36. data/node_modules/acorn/dist/acorn.d.mts +8 -9
  37. data/node_modules/acorn/dist/acorn.d.ts +8 -9
  38. data/node_modules/acorn/dist/acorn.js +92 -29
  39. data/node_modules/acorn/dist/acorn.mjs +92 -29
  40. data/node_modules/acorn/package.json +3 -3
  41. data/node_modules/eslint/README.md +7 -8
  42. data/node_modules/eslint/conf/ecma-version.js +1 -1
  43. data/node_modules/eslint/conf/globals.js +6 -1
  44. data/node_modules/eslint/lib/cli.js +23 -2
  45. data/node_modules/eslint/lib/eslint/eslint-helpers.js +5 -0
  46. data/node_modules/eslint/lib/eslint/eslint.js +16 -2
  47. data/node_modules/eslint/lib/eslint/legacy-eslint.js +14 -0
  48. data/node_modules/eslint/lib/languages/js/index.js +10 -5
  49. data/node_modules/eslint/lib/languages/js/source-code/source-code.js +16 -6
  50. data/node_modules/eslint/lib/linter/apply-disable-directives.js +6 -3
  51. data/node_modules/eslint/lib/linter/config-comment-parser.js +3 -16
  52. data/node_modules/eslint/lib/linter/linter.js +194 -149
  53. data/node_modules/eslint/lib/linter/node-event-generator.js +2 -4
  54. data/node_modules/eslint/lib/linter/vfile.js +7 -0
  55. data/node_modules/eslint/lib/options.js +13 -1
  56. data/node_modules/eslint/lib/rules/no-restricted-imports.js +12 -5
  57. data/node_modules/eslint/lib/rules/no-unused-vars.js +34 -32
  58. data/node_modules/eslint/lib/rules/no-useless-backreference.js +81 -31
  59. data/node_modules/eslint/lib/rules/utils/regular-expressions.js +1 -1
  60. data/node_modules/eslint/lib/shared/flags.js +26 -0
  61. data/node_modules/eslint/lib/shared/logging.js +10 -1
  62. data/node_modules/eslint/lib/shared/types.js +1 -1
  63. data/node_modules/eslint/package.json +9 -13
  64. data/node_modules/eslint-scope/dist/eslint-scope.cjs +2 -2
  65. data/node_modules/eslint-scope/lib/referencer.js +1 -1
  66. data/node_modules/eslint-scope/lib/version.js +1 -1
  67. data/node_modules/eslint-scope/package.json +2 -2
  68. data/node_modules/espree/README.md +5 -5
  69. data/node_modules/espree/dist/espree.cjs +62 -6
  70. data/node_modules/espree/espree.js +1 -4
  71. data/node_modules/espree/lib/options.js +3 -2
  72. data/node_modules/espree/lib/token-translator.js +1 -1
  73. data/node_modules/espree/lib/version.js +1 -1
  74. data/node_modules/espree/package.json +7 -7
  75. data/node_modules/js-tokens/CHANGELOG.md +17 -0
  76. data/node_modules/js-tokens/LICENSE +1 -1
  77. data/node_modules/js-tokens/README.md +25 -7
  78. data/node_modules/js-tokens/index.js +3 -3
  79. data/node_modules/js-tokens/package.json +5 -5
  80. data/node_modules/jscodeshift/CHANGELOG.md +5 -0
  81. data/node_modules/jscodeshift/bin/jscodeshift.js +1 -1
  82. data/node_modules/jscodeshift/package.json +1 -2
  83. data/node_modules/jscodeshift/website/index.htm +9 -0
  84. data/node_modules/prettier/LICENSE +35 -34
  85. data/node_modules/prettier/doc.js +2 -2
  86. data/node_modules/prettier/doc.mjs +2 -2
  87. data/node_modules/prettier/index.cjs +8 -8
  88. data/node_modules/prettier/index.d.ts +1 -2
  89. data/node_modules/prettier/index.mjs +636 -704
  90. data/node_modules/prettier/internal/cli.mjs +4 -4
  91. data/node_modules/prettier/package.json +1 -1
  92. data/node_modules/prettier/plugins/acorn.js +14 -12
  93. data/node_modules/prettier/plugins/acorn.mjs +14 -12
  94. data/node_modules/prettier/plugins/angular.js +1 -1
  95. data/node_modules/prettier/plugins/angular.mjs +1 -1
  96. data/node_modules/prettier/plugins/babel.js +10 -11
  97. data/node_modules/prettier/plugins/babel.mjs +10 -11
  98. data/node_modules/prettier/plugins/estree.js +27 -27
  99. data/node_modules/prettier/plugins/estree.mjs +27 -27
  100. data/node_modules/prettier/plugins/flow.js +15 -16
  101. data/node_modules/prettier/plugins/flow.mjs +15 -16
  102. data/node_modules/prettier/plugins/glimmer.js +5 -5
  103. data/node_modules/prettier/plugins/glimmer.mjs +5 -5
  104. data/node_modules/prettier/plugins/graphql.js +8 -8
  105. data/node_modules/prettier/plugins/graphql.mjs +8 -8
  106. data/node_modules/prettier/plugins/html.js +17 -17
  107. data/node_modules/prettier/plugins/html.mjs +17 -17
  108. data/node_modules/prettier/plugins/markdown.js +44 -44
  109. data/node_modules/prettier/plugins/markdown.mjs +44 -44
  110. data/node_modules/prettier/plugins/meriyah.js +4 -5
  111. data/node_modules/prettier/plugins/meriyah.mjs +4 -5
  112. data/node_modules/prettier/plugins/postcss.js +26 -26
  113. data/node_modules/prettier/plugins/postcss.mjs +26 -26
  114. data/node_modules/prettier/plugins/typescript.js +15 -20
  115. data/node_modules/prettier/plugins/typescript.mjs +15 -20
  116. data/node_modules/prettier/plugins/yaml.js +6 -6
  117. data/node_modules/prettier/plugins/yaml.mjs +6 -6
  118. data/node_modules/prettier/standalone.js +31 -30
  119. data/node_modules/prettier/standalone.mjs +28 -27
  120. data/package.json +4 -4
  121. metadata +24 -2
@@ -16,7 +16,7 @@
16
16
  ],
17
17
  "./package.json": "./package.json"
18
18
  },
19
- "version": "10.0.1",
19
+ "version": "10.1.0",
20
20
  "files": [
21
21
  "lib",
22
22
  "dist/espree.cjs",
@@ -32,7 +32,7 @@
32
32
  "funding": "https://opencollective.com/eslint",
33
33
  "license": "BSD-2-Clause",
34
34
  "dependencies": {
35
- "acorn": "^8.11.3",
35
+ "acorn": "^8.12.0",
36
36
  "acorn-jsx": "^5.3.2",
37
37
  "eslint-visitor-keys": "^4.0.0"
38
38
  },
@@ -42,16 +42,16 @@
42
42
  "@rollup/plugin-node-resolve": "^11.2.0",
43
43
  "c8": "^7.11.0",
44
44
  "chai": "^4.3.6",
45
- "eslint": "^8.44.0",
46
- "eslint-config-eslint": "^9.0.0",
45
+ "eslint": "^9.4.0",
46
+ "eslint-config-eslint": "^11.0.0",
47
47
  "eslint-release": "^3.2.0",
48
48
  "esprima-fb": "^8001.2001.0-dev-harmony-fb",
49
- "globals": "^13.20.0",
49
+ "globals": "^15.1.0",
50
50
  "lint-staged": "^13.2.0",
51
51
  "mocha": "^9.2.2",
52
52
  "npm-run-all": "^4.1.5",
53
53
  "rollup": "^2.41.2",
54
- "shelljs": "^0.3.0",
54
+ "shelljs": "^0.8.5",
55
55
  "yorkie": "^2.0.0"
56
56
  },
57
57
  "keywords": [
@@ -70,7 +70,7 @@
70
70
  "build:debug": "npm run build -- -m",
71
71
  "build:docs": "node tools/sync-docs.js",
72
72
  "build:update-version": "node tools/update-version.js",
73
- "lint": "eslint . --report-unused-disable-directives",
73
+ "lint": "eslint .",
74
74
  "lint:fix": "npm run lint -- --fix",
75
75
  "prepublishOnly": "npm run build:update-version && npm run build",
76
76
  "pretest": "npm run build",
@@ -1,3 +1,20 @@
1
+ ### Version 4.0.0 (2018-01-28) ###
2
+
3
+ - Added: Support for ES2018. The only change needed was recognizing the `s`
4
+ regex flag.
5
+ - Changed: _All_ tokens returned by the `matchToToken` function now have a
6
+ `closed` property. It is set to `undefined` for the tokens where “closed”
7
+ doesn’t make sense. This means that all tokens objects have the same shape,
8
+ which might improve performance.
9
+
10
+ These are the breaking changes:
11
+
12
+ - `'/a/s'.match(jsTokens)` no longer returns `['/', 'a', '/', 's']`, but
13
+ `['/a/s']`. (There are of course other variations of this.)
14
+ - Code that rely on some token objects not having the `closed` property could
15
+ now behave differently.
16
+
17
+
1
18
  ### Version 3.0.2 (2017-06-28) ###
2
19
 
3
20
  - No code changes. Just updates to the readme.
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2014, 2015, 2016, 2017 Simon Lydell
3
+ Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -73,14 +73,13 @@ Whitespace includes both line terminators and other whitespace.
73
73
  ECMAScript support
74
74
  ==================
75
75
 
76
- The intention is to always support the latest stable ECMAScript version.
76
+ The intention is to always support the latest ECMAScript version whose feature
77
+ set has been finalized.
77
78
 
78
79
  If adding support for a newer version requires changes, a new version with a
79
80
  major verion bump will be released.
80
81
 
81
- Currently, [ECMAScript 2017] is supported.
82
-
83
- [ECMAScript 2017]: https://www.ecma-international.org/ecma-262/8.0/index.html
82
+ Currently, ECMAScript 2018 is supported.
84
83
 
85
84
 
86
85
  Invalid code handling
@@ -100,7 +99,8 @@ inside the regex.
100
99
  Invalid ASCII characters have their own capturing group.
101
100
 
102
101
  Invalid non-ASCII characters are treated as names, to simplify the matching of
103
- names (except unicode spaces which are treated as whitespace).
102
+ names (except unicode spaces which are treated as whitespace). Note: See also
103
+ the [ES2018](#es2018) section.
104
104
 
105
105
  Regex literals may contain invalid regex syntax. They are still matched as
106
106
  regex literals. They may also contain repeated regex flags, to keep the regex
@@ -144,7 +144,8 @@ var regex = / 2/g
144
144
  A human can easily understand that in the `number` line we’re dealing with
145
145
  division, and in the `regex` line we’re dealing with a regex literal. How come?
146
146
  Because humans can look at the whole code to put the `/` characters in context.
147
- A JavaScript regex cannot. It only sees forwards.
147
+ A JavaScript regex cannot. It only sees forwards. (Well, ES2018 regexes can also
148
+ look backwards. See the [ES2018](#es2018) section).
148
149
 
149
150
  When the `jsTokens` regex scans throught the above, it will see the following
150
151
  at the end of both the `number` and `regex` rows:
@@ -192,7 +193,7 @@ valid regex flag. I initially wanted to future-proof by allowing `[a-zA-Z]*`
192
193
  (any letter) as flags, but it is not worth it since it increases the amount of
193
194
  ambigous cases. So only the standard `g`, `m`, `i`, `y` and `u` flags are
194
195
  allowed. This means that the above example will be identified as division as
195
- long as you don’t rename the `e` variable to some permutation of `gmiyu` 1 to 5
196
+ long as you don’t rename the `e` variable to some permutation of `gmiyus` 1 to 6
196
197
  characters long.
197
198
 
198
199
  Lastly, we can look _forward_ for information.
@@ -215,6 +216,23 @@ If the end of a statement looks like a regex literal (even if it isn’t), it
215
216
  will be treated as one. Otherwise it should work as expected (if you write sane
216
217
  code).
217
218
 
219
+ ### ES2018 ###
220
+
221
+ ES2018 added some nice regex improvements to the language.
222
+
223
+ - [Unicode property escapes] should allow telling names and invalid non-ASCII
224
+ characters apart without blowing up the regex size.
225
+ - [Lookbehind assertions] should allow matching telling division and regex
226
+ literals apart in more cases.
227
+ - [Named capture groups] might simplify some things.
228
+
229
+ These things would be nice to do, but are not critical. They probably have to
230
+ wait until the oldest maintained Node.js LTS release supports those features.
231
+
232
+ [Unicode property escapes]: http://2ality.com/2017/07/regexp-unicode-property-escapes.html
233
+ [Lookbehind assertions]: http://2ality.com/2017/05/regexp-lookbehind-assertions.html
234
+ [Named capture groups]: http://2ality.com/2017/05/regexp-named-capture-groups.html
235
+
218
236
 
219
237
  License
220
238
  =======
@@ -1,4 +1,4 @@
1
- // Copyright 2014, 2015, 2016, 2017 Simon Lydell
1
+ // Copyright 2014, 2015, 2016, 2017, 2018 Simon Lydell
2
2
  // License: MIT. (See LICENSE.)
3
3
 
4
4
  Object.defineProperty(exports, "__esModule", {
@@ -7,10 +7,10 @@ Object.defineProperty(exports, "__esModule", {
7
7
 
8
8
  // This regex comes from regex.coffee, and is inserted here by generate-index.js
9
9
  // (run `npm run build`).
10
- exports.default = /((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyu]{1,5}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g
10
+ exports.default = /((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g
11
11
 
12
12
  exports.matchToToken = function(match) {
13
- var token = {type: "invalid", value: match[0]}
13
+ var token = {type: "invalid", value: match[0], closed: undefined}
14
14
  if (match[ 1]) token.type = "string" , token.closed = !!(match[3] || match[4])
15
15
  else if (match[ 5]) token.type = "comment"
16
16
  else if (match[ 6]) token.type = "comment", token.closed = !!match[7]
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "js-tokens",
3
- "version": "3.0.2",
3
+ "version": "4.0.0",
4
4
  "author": "Simon Lydell",
5
5
  "license": "MIT",
6
6
  "description": "A regex that tokenizes JavaScript.",
@@ -22,9 +22,9 @@
22
22
  "dev": "npm run build && npm test"
23
23
  },
24
24
  "devDependencies": {
25
- "coffee-script": "~1.12.6",
26
- "esprima": "^4.0.0",
27
- "everything.js": "^1.0.3",
28
- "mocha": "^3.4.2"
25
+ "coffeescript": "2.1.1",
26
+ "esprima": "4.0.0",
27
+ "everything.js": "1.0.3",
28
+ "mocha": "5.0.0"
29
29
  }
30
30
  }
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
  ## [Unreleased]
8
8
  <!-- Add new changes here -->
9
9
 
10
+ ## [0.16.1] 2024-06-25
11
+
12
+ ### Fixed
13
+ - Removed old `babel-core` dependency that was unused but caused security scanners to flag vulnerabilities.
14
+
10
15
  ## [0.16.0] 2024-06-18
11
16
 
12
17
  ### Added
@@ -134,7 +134,7 @@ const parser = require('../src/argsParser')
134
134
  const requirePackage = require('../utils/requirePackage');
135
135
  return [
136
136
  `jscodeshift: ${pkg.version}`,
137
- ` - babel: ${require('babel-core').version}`,
137
+ ` - babel: ${require('@babel/core').version}`,
138
138
  ` - babylon: ${requirePackage('@babel/parser').version}`,
139
139
  ` - flow: ${requirePackage('flow-parser').version}`,
140
140
  ` - recast: ${requirePackage('recast').version}\n`,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jscodeshift",
3
- "version": "0.16.0",
3
+ "version": "0.16.1",
4
4
  "description": "A toolkit for JavaScript codemods",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,7 +34,6 @@
34
34
  "@babel/preset-flow": "^7.24.7",
35
35
  "@babel/preset-typescript": "^7.24.7",
36
36
  "@babel/register": "^7.24.6",
37
- "babel-core": "^6.26.3",
38
37
  "chalk": "^4.1.2",
39
38
  "flow-parser": "0.*",
40
39
  "graceful-fs": "^4.2.4",
@@ -0,0 +1,9 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>JSCodeshift</title>
5
+ </head>
6
+ <body>
7
+ Coming soon 👀
8
+ </body>
9
+ </html>
@@ -17,7 +17,7 @@ MIT, ISC, BSD-2-Clause, BSD-3-Clause, Apache-2.0
17
17
 
18
18
  ## Bundled dependencies
19
19
 
20
- ### @angular/compiler@v18.0.2
20
+ ### @angular/compiler@v18.1.0
21
21
 
22
22
  > Angular - the compiler library
23
23
 
@@ -128,7 +128,7 @@ Author: The Babel Team (https://babel.dev/team)
128
128
 
129
129
  ----------------------------------------
130
130
 
131
- ### @babel/parser@v7.24.7
131
+ ### @babel/parser@v7.24.8
132
132
 
133
133
  > A JavaScript parser
134
134
 
@@ -456,7 +456,7 @@ Author: Alex Bell <alex@bellandwhistle.net>
456
456
 
457
457
  ----------------------------------------
458
458
 
459
- ### @typescript-eslint/types@v7.13.0
459
+ ### @typescript-eslint/types@v8.0.0-alpha.41
460
460
 
461
461
  > Types for the TypeScript-ESTree AST spec
462
462
 
@@ -488,7 +488,7 @@ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
488
488
 
489
489
  ----------------------------------------
490
490
 
491
- ### @typescript-eslint/typescript-estree@v7.13.0
491
+ ### @typescript-eslint/typescript-estree@v8.0.0-alpha.41
492
492
 
493
493
  > A parser that converts TypeScript source code into an ESTree compatible form
494
494
 
@@ -525,13 +525,13 @@ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
525
525
 
526
526
  ----------------------------------------
527
527
 
528
- ### acorn@v8.11.3
528
+ ### acorn@v8.12.1
529
529
 
530
530
  > ECMAScript parser
531
531
 
532
532
  License: MIT
533
533
  Homepage: <https://github.com/acornjs/acorn>
534
- Repository: <https://github.com/acornjs/acorn.git>
534
+ Repository: <git+https://github.com/acornjs/acorn.git>
535
535
 
536
536
  > MIT License
537
537
  >
@@ -619,7 +619,7 @@ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
619
619
 
620
620
  ----------------------------------------
621
621
 
622
- ### angular-html-parser@v5.2.0
622
+ ### angular-html-parser@v6.0.2
623
623
 
624
624
  > A HTML parser extracted from Angular with some modifications
625
625
 
@@ -627,26 +627,26 @@ License: MIT
627
627
  Homepage: <https://github.com/prettier/angular-html-parser/blob/master/packages/angular-html-parser#readme>
628
628
  Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
629
629
 
630
- > MIT License
631
- >
632
- > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
633
- >
634
- > Permission is hereby granted, free of charge, to any person obtaining a copy
635
- > of this software and associated documentation files (the "Software"), to deal
636
- > in the Software without restriction, including without limitation the rights
637
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
638
- > copies of the Software, and to permit persons to whom the Software is
639
- > furnished to do so, subject to the following conditions:
640
- >
641
- > The above copyright notice and this permission notice shall be included in all
642
- > copies or substantial portions of the Software.
643
- >
644
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
645
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
646
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
647
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
648
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
649
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
630
+ > MIT License
631
+ >
632
+ > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
633
+ >
634
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
635
+ > of this software and associated documentation files (the "Software"), to deal
636
+ > in the Software without restriction, including without limitation the rights
637
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
638
+ > copies of the Software, and to permit persons to whom the Software is
639
+ > furnished to do so, subject to the following conditions:
640
+ >
641
+ > The above copyright notice and this permission notice shall be included in all
642
+ > copies or substantial portions of the Software.
643
+ >
644
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
645
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
646
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
647
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
648
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
649
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
650
650
  > SOFTWARE.
651
651
 
652
652
  ----------------------------------------
@@ -1167,7 +1167,7 @@ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1167
1167
 
1168
1168
  ----------------------------------------
1169
1169
 
1170
- ### espree@v10.0.1
1170
+ ### espree@v10.1.0
1171
1171
 
1172
1172
  > An Esprima-compatible JavaScript parser built on Acorn
1173
1173
 
@@ -1302,7 +1302,7 @@ Author: James Halliday <mail@substack.net> (http://substack.net)
1302
1302
 
1303
1303
  ----------------------------------------
1304
1304
 
1305
- ### fastq@v1.15.0
1305
+ ### fastq@v1.17.1
1306
1306
 
1307
1307
  > Fast, in memory work queue
1308
1308
 
@@ -1605,7 +1605,7 @@ Contributors:
1605
1605
 
1606
1606
  ----------------------------------------
1607
1607
 
1608
- ### graphql@v16.8.1
1608
+ ### graphql@v16.9.0
1609
1609
 
1610
1610
  > A Query Language and Runtime which can target any service.
1611
1611
 
@@ -2223,7 +2223,7 @@ Author: fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
2223
2223
 
2224
2224
  ----------------------------------------
2225
2225
 
2226
- ### jest-docblock@v29.7.0
2226
+ ### jest-docblock@v30.0.0-alpha.5
2227
2227
 
2228
2228
  License: MIT
2229
2229
  Repository: <https://github.com/jestjs/jest.git>
@@ -2231,6 +2231,7 @@ Repository: <https://github.com/jestjs/jest.git>
2231
2231
  > MIT License
2232
2232
  >
2233
2233
  > Copyright (c) Meta Platforms, Inc. and affiliates.
2234
+ > Copyright Contributors to the Jest project.
2234
2235
  >
2235
2236
  > Permission is hereby granted, free of charge, to any person obtaining a copy
2236
2237
  > of this software and associated documentation files (the "Software"), to deal
@@ -2943,7 +2944,7 @@ Author: typicode
2943
2944
 
2944
2945
  ----------------------------------------
2945
2946
 
2946
- ### postcss@v8.4.38
2947
+ ### postcss@v8.4.39
2947
2948
 
2948
2949
  > Tool for transforming styles with JS plugins
2949
2950
 
@@ -3685,7 +3686,7 @@ Author: JoshuaKGoldberg <npm@joshuakgoldberg.com>
3685
3686
 
3686
3687
  ----------------------------------------
3687
3688
 
3688
- ### typescript@v5.4.5
3689
+ ### typescript@v5.5.3
3689
3690
 
3690
3691
  > TypeScript is a language for application scale JavaScript development
3691
3692
 
@@ -4360,7 +4361,7 @@ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
4360
4361
 
4361
4362
  ----------------------------------------
4362
4363
 
4363
- ### yocto-queue@v1.0.0
4364
+ ### yocto-queue@v1.1.1
4364
4365
 
4365
4366
  > Tiny queue data structure
4366
4367
 
@@ -378,7 +378,7 @@ Expected it to be ${EXPECTED_TYPE_VALUES}.`;
378
378
  var _isNarrowWidth = (codePoint) => !(isFullWidth(codePoint) || isWide(codePoint));
379
379
 
380
380
  // src/utils/get-string-width.js
381
- var notAsciiRegex = /[^\x20-\x7F]/;
381
+ var notAsciiRegex = /[^\x20-\x7F]/u;
382
382
  function getStringWidth(text) {
383
383
  if (!text) {
384
384
  return 0;
@@ -610,7 +610,7 @@ Expected it to be ${EXPECTED_TYPE_VALUES}.`;
610
610
  case DOC_TYPE_ARRAY:
611
611
  return stripTrailingHardlineFromParts(doc);
612
612
  case DOC_TYPE_STRING:
613
- return doc.replace(/[\n\r]*$/, "");
613
+ return doc.replace(/[\n\r]*$/u, "");
614
614
  case DOC_TYPE_ALIGN:
615
615
  case DOC_TYPE_CURSOR:
616
616
  case DOC_TYPE_TRIM:
@@ -343,7 +343,7 @@ function isWide(x) {
343
343
  var _isNarrowWidth = (codePoint) => !(isFullWidth(codePoint) || isWide(codePoint));
344
344
 
345
345
  // src/utils/get-string-width.js
346
- var notAsciiRegex = /[^\x20-\x7F]/;
346
+ var notAsciiRegex = /[^\x20-\x7F]/u;
347
347
  function getStringWidth(text) {
348
348
  if (!text) {
349
349
  return 0;
@@ -575,7 +575,7 @@ function stripTrailingHardlineFromDoc(doc) {
575
575
  case DOC_TYPE_ARRAY:
576
576
  return stripTrailingHardlineFromParts(doc);
577
577
  case DOC_TYPE_STRING:
578
- return doc.replace(/[\n\r]*$/, "");
578
+ return doc.replace(/[\n\r]*$/u, "");
579
579
  case DOC_TYPE_ALIGN:
580
580
  case DOC_TYPE_CURSOR:
581
581
  case DOC_TYPE_TRIM:
@@ -62,10 +62,10 @@ function skip(characters) {
62
62
  var skipWhitespace, skipSpaces, skipToLineEnd, skipEverythingButNewLine;
63
63
  var init_skip = __esm({
64
64
  "src/utils/skip.js"() {
65
- skipWhitespace = skip(/\s/);
65
+ skipWhitespace = skip(/\s/u);
66
66
  skipSpaces = skip(" ");
67
67
  skipToLineEnd = skip(",; ");
68
- skipEverythingButNewLine = skip(/[^\n\r]/);
68
+ skipEverythingButNewLine = skip(/[^\n\r]/u);
69
69
  }
70
70
  });
71
71
 
@@ -293,7 +293,7 @@ function getIndentSize(value, tabWidth) {
293
293
  }
294
294
  return get_alignment_size_default(
295
295
  // All the leading whitespaces
296
- value.slice(lastNewlineIndex + 1).match(/^[\t ]*/)[0],
296
+ value.slice(lastNewlineIndex + 1).match(/^[\t ]*/u)[0],
297
297
  tabWidth
298
298
  );
299
299
  }
@@ -320,7 +320,7 @@ var init_escape_string_regexp = __esm({
320
320
  // src/utils/get-max-continuous-count.js
321
321
  function getMaxContinuousCount(text, searchString) {
322
322
  const results = text.match(
323
- new RegExp(`(${escapeStringRegexp(searchString)})+`, "g")
323
+ new RegExp(`(${escapeStringRegexp(searchString)})+`, "gu")
324
324
  );
325
325
  if (results === null) {
326
326
  return 0;
@@ -409,7 +409,7 @@ var init_get_string_width = __esm({
409
409
  "src/utils/get-string-width.js"() {
410
410
  init_emoji_regex();
411
411
  init_get_east_asian_width();
412
- notAsciiRegex = /[^\x20-\x7F]/;
412
+ notAsciiRegex = /[^\x20-\x7F]/u;
413
413
  get_string_width_default = getStringWidth;
414
414
  }
415
415
  });
@@ -470,7 +470,7 @@ var init_string_replace_all = __esm({
470
470
  // src/utils/make-string.js
471
471
  function makeString(rawText, enclosingQuote, unescapeUnnecessaryEscapes) {
472
472
  const otherQuote = enclosingQuote === '"' ? "'" : '"';
473
- const regex = /\\(.)|(["'])/gs;
473
+ const regex = /\\(.)|(["'])/gsu;
474
474
  const raw = string_replace_all_default(
475
475
  /* isOptionalObject */
476
476
  false,
@@ -486,7 +486,7 @@ function makeString(rawText, enclosingQuote, unescapeUnnecessaryEscapes) {
486
486
  if (quote) {
487
487
  return quote;
488
488
  }
489
- return unescapeUnnecessaryEscapes && /^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/.test(escaped) ? escaped : "\\" + escaped;
489
+ return unescapeUnnecessaryEscapes && /^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(escaped) ? escaped : "\\" + escaped;
490
490
  }
491
491
  );
492
492
  return enclosingQuote + raw + enclosingQuote;
@@ -585,7 +585,7 @@ var init_public = __esm({
585
585
  // src/main/version.evaluate.cjs
586
586
  var require_version_evaluate = __commonJS({
587
587
  "src/main/version.evaluate.cjs"(exports2, module2) {
588
- module2.exports = "3.3.2";
588
+ module2.exports = "3.3.3";
589
589
  }
590
590
  });
591
591
 
@@ -613,8 +613,7 @@ export interface ResolveConfigOptions {
613
613
  /**
614
614
  * `resolveConfig` can be used to resolve configuration for a given source file,
615
615
  * passing its path or url as the first argument. The config search will start at
616
- * the file location and continue to search up the directory.
617
- * (You can use `process.cwd()` to start searching from the current directory).
616
+ * the directory of the file location and continue to search up the directory.
618
617
  *
619
618
  * A promise is returned which will resolve to:
620
619
  *