Update checked-in dependencies
This commit is contained in:
parent
4fad06f438
commit
40a500c743
4168 changed files with 298222 additions and 374905 deletions
28
node_modules/acorn/CHANGELOG.md
generated
vendored
28
node_modules/acorn/CHANGELOG.md
generated
vendored
|
|
@ -1,3 +1,31 @@
|
|||
## 8.10.0 (2023-07-05)
|
||||
|
||||
### New features
|
||||
|
||||
Add a `checkPrivateFields` option that disables strict checking of private property use.
|
||||
|
||||
## 8.9.0 (2023-06-16)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
Forbid dynamic import after `new`, even when part of a member expression.
|
||||
|
||||
### New features
|
||||
|
||||
Add Unicode properties for ES2023.
|
||||
|
||||
Add support for the `v` flag to regular expressions.
|
||||
|
||||
## 8.8.2 (2023-01-23)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
Fix a bug that caused `allowHashBang` to be set to false when not provided, even with `ecmaVersion >= 14`.
|
||||
|
||||
Fix an exception when passing no option object to `parse` or `new Parser`.
|
||||
|
||||
Fix incorrect parse error on `if (0) let\n[astral identifier char]`.
|
||||
|
||||
## 8.8.1 (2022-10-24)
|
||||
|
||||
### Bug fixes
|
||||
|
|
|
|||
13
node_modules/acorn/README.md
generated
vendored
13
node_modules/acorn/README.md
generated
vendored
|
|
@ -96,10 +96,11 @@ required):
|
|||
(when `sourceType` is not `"module"`).
|
||||
|
||||
- **allowAwaitOutsideFunction**: If `false`, `await` expressions can
|
||||
only appear inside `async` functions. Defaults to `true` for
|
||||
`ecmaVersion` 2022 and later, `false` for lower versions. Setting this option to
|
||||
`true` allows to have top-level `await` expressions. They are
|
||||
still not allowed in non-`async` functions, though.
|
||||
only appear inside `async` functions. Defaults to `true` in modules
|
||||
for `ecmaVersion` 2022 and later, `false` for lower versions.
|
||||
Setting this option to `true` allows to have top-level `await`
|
||||
expressions. They are still not allowed in non-`async` functions,
|
||||
though.
|
||||
|
||||
- **allowSuperOutsideMethod**: By default, `super` outside a method
|
||||
raises an error. Set this to `true` to accept such code.
|
||||
|
|
@ -108,6 +109,10 @@ required):
|
|||
characters `#!` (as in a shellscript), the first line will be
|
||||
treated as a comment. Defaults to true when `ecmaVersion` >= 2023.
|
||||
|
||||
- **checkPrivateFields**: By default, the parser will verify that
|
||||
private properties are only used in places where they are valid and
|
||||
have been declared. Set this to false to turn such checks off.
|
||||
|
||||
- **locations**: When `true`, each node has a `loc` object attached
|
||||
with `start` and `end` subobjects, each of which contains the
|
||||
one-based line and zero-based column numbers in `{line, column}`
|
||||
|
|
|
|||
26
node_modules/acorn/dist/acorn.d.mts
generated
vendored
Normal file
26
node_modules/acorn/dist/acorn.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
export {
|
||||
Node,
|
||||
Parser,
|
||||
Position,
|
||||
SourceLocation,
|
||||
TokContext,
|
||||
Token,
|
||||
TokenType,
|
||||
defaultOptions,
|
||||
getLineInfo,
|
||||
isIdentifierChar,
|
||||
isIdentifierStart,
|
||||
isNewLine,
|
||||
lineBreak,
|
||||
lineBreakG,
|
||||
parse,
|
||||
parseExpressionAt,
|
||||
tokContexts,
|
||||
tokTypes,
|
||||
tokenizer,
|
||||
version,
|
||||
AbstractToken,
|
||||
Comment,
|
||||
Options,
|
||||
ecmaVersion,
|
||||
} from "./acorn.js";
|
||||
42
node_modules/acorn/dist/acorn.d.ts
generated
vendored
42
node_modules/acorn/dist/acorn.d.ts
generated
vendored
|
|
@ -11,7 +11,7 @@ declare namespace acorn {
|
|||
[Symbol.iterator](): Iterator<Token>
|
||||
}
|
||||
|
||||
type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 'latest'
|
||||
type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 'latest'
|
||||
|
||||
interface Options {
|
||||
ecmaVersion: ecmaVersion
|
||||
|
|
@ -249,4 +249,44 @@ declare namespace acorn {
|
|||
const lineBreakG: RegExp
|
||||
|
||||
const version: string
|
||||
|
||||
const nonASCIIwhitespace: RegExp
|
||||
|
||||
const keywordTypes: {
|
||||
_break: TokenType
|
||||
_case: TokenType
|
||||
_catch: TokenType
|
||||
_continue: TokenType
|
||||
_debugger: TokenType
|
||||
_default: TokenType
|
||||
_do: TokenType
|
||||
_else: TokenType
|
||||
_finally: TokenType
|
||||
_for: TokenType
|
||||
_function: TokenType
|
||||
_if: TokenType
|
||||
_return: TokenType
|
||||
_switch: TokenType
|
||||
_throw: TokenType
|
||||
_try: TokenType
|
||||
_var: TokenType
|
||||
_const: TokenType
|
||||
_while: TokenType
|
||||
_with: TokenType
|
||||
_new: TokenType
|
||||
_this: TokenType
|
||||
_super: TokenType
|
||||
_class: TokenType
|
||||
_extends: TokenType
|
||||
_export: TokenType
|
||||
_import: TokenType
|
||||
_null: TokenType
|
||||
_true: TokenType
|
||||
_false: TokenType
|
||||
_in: TokenType
|
||||
_instanceof: TokenType
|
||||
_typeof: TokenType
|
||||
_void: TokenType
|
||||
_delete: TokenType
|
||||
}
|
||||
}
|
||||
|
|
|
|||
705
node_modules/acorn/dist/acorn.js
generated
vendored
705
node_modules/acorn/dist/acorn.js
generated
vendored
File diff suppressed because it is too large
Load diff
703
node_modules/acorn/dist/acorn.mjs
generated
vendored
703
node_modules/acorn/dist/acorn.mjs
generated
vendored
File diff suppressed because it is too large
Load diff
2
node_modules/acorn/dist/acorn.mjs.d.ts
generated
vendored
2
node_modules/acorn/dist/acorn.mjs.d.ts
generated
vendored
|
|
@ -1,2 +0,0 @@
|
|||
import * as acorn from "./acorn";
|
||||
export = acorn;
|
||||
7
node_modules/acorn/dist/bin.js
generated
vendored
7
node_modules/acorn/dist/bin.js
generated
vendored
|
|
@ -4,8 +4,7 @@ var path = require('path');
|
|||
var fs = require('fs');
|
||||
var acorn = require('./acorn.js');
|
||||
|
||||
function _interopNamespace(e) {
|
||||
if (e && e.__esModule) return e;
|
||||
function _interopNamespaceDefault(e) {
|
||||
var n = Object.create(null);
|
||||
if (e) {
|
||||
Object.keys(e).forEach(function (k) {
|
||||
|
|
@ -18,11 +17,11 @@ function _interopNamespace(e) {
|
|||
}
|
||||
});
|
||||
}
|
||||
n["default"] = e;
|
||||
n.default = e;
|
||||
return Object.freeze(n);
|
||||
}
|
||||
|
||||
var acorn__namespace = /*#__PURE__*/_interopNamespace(acorn);
|
||||
var acorn__namespace = /*#__PURE__*/_interopNamespaceDefault(acorn);
|
||||
|
||||
var inputFilePaths = [], forceFileName = false, fileMode = false, silent = false, compact = false, tokenize = false;
|
||||
var options = {};
|
||||
|
|
|
|||
2
node_modules/acorn/package.json
generated
vendored
2
node_modules/acorn/package.json
generated
vendored
|
|
@ -16,7 +16,7 @@
|
|||
],
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"version": "8.8.1",
|
||||
"version": "8.10.0",
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue