@tachybase/module-cloud-component 1.3.18 → 1.3.19
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/dist/client/cloud-library-manager/CloudLibraryManager.schema.d.ts +4 -5
- package/dist/client/index.js +28 -28
- package/dist/externalVersion.js +7 -7
- package/dist/node_modules/@babel/core/lib/index.js +19 -19
- package/dist/node_modules/@babel/core/node_modules/.bin/parser +4 -4
- package/dist/node_modules/@babel/core/package.json +1 -1
- package/dist/node_modules/@babel/parser/lib/index.js +1 -1
- package/dist/node_modules/@babel/parser/package.json +1 -1
- package/dist/node_modules/@babel/parser/typings/babel-parser.d.ts +3 -7
- package/dist/node_modules/@babel/preset-env/lib/available-plugins.js +0 -4
- package/dist/node_modules/@babel/preset-env/lib/index.js +85 -104
- package/dist/node_modules/@babel/preset-env/package.json +1 -1
- package/dist/node_modules/@babel/preset-react/lib/index.js +20 -20
- package/dist/node_modules/@babel/preset-react/package.json +1 -1
- package/dist/node_modules/@babel/preset-typescript/lib/index.js +19 -19
- package/dist/node_modules/@babel/preset-typescript/package.json +1 -1
- package/dist/node_modules/@babel/traverse/lib/index.js +3 -3
- package/dist/node_modules/@babel/traverse/node_modules/.bin/parser +4 -4
- package/dist/node_modules/@babel/traverse/package.json +1 -1
- package/dist/node_modules/@hapi/topo/package.json +1 -1
- package/package.json +11 -11
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@babel/parser","version":"7.
|
|
1
|
+
{"name":"@babel/parser","version":"7.27.5","description":"A JavaScript parser","author":"The Babel Team (https://babel.dev/team)","homepage":"https://babel.dev/docs/en/next/babel-parser","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen","license":"MIT","publishConfig":{"access":"public"},"keywords":["babel","javascript","parser","tc39","ecmascript","@babel/parser"],"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-parser"},"main":"./lib/index.js","types":"./typings/babel-parser.d.ts","files":["bin","lib","typings/babel-parser.d.ts","index.cjs"],"engines":{"node":">=6.0.0"},"# dependencies":"This package doesn't actually have runtime dependencies. @babel/types is only needed for type definitions.","dependencies":{"@babel/types":"^7.27.3"},"devDependencies":{"@babel/code-frame":"^7.27.1","@babel/helper-check-duplicate-nodes":"^7.27.1","@babel/helper-fixtures":"^7.27.1","@babel/helper-string-parser":"^7.27.1","@babel/helper-validator-identifier":"^7.27.1","charcodes":"^0.2.0"},"bin":"./bin/babel-parser.js","type":"commonjs","_lastModified":"2025-07-17T10:54:58.098Z"}
|
|
@@ -22,7 +22,7 @@ type Plugin$1 =
|
|
|
22
22
|
| "deprecatedImportAssert"
|
|
23
23
|
| "doExpressions"
|
|
24
24
|
| IF_BABEL_7<"dynamicImport">
|
|
25
|
-
|
|
|
25
|
+
| "explicitResourceManagement"
|
|
26
26
|
| "exportDefaultFrom"
|
|
27
27
|
| IF_BABEL_7<"exportNamespaceFrom">
|
|
28
28
|
| "flow"
|
|
@@ -54,7 +54,6 @@ type Plugin$1 =
|
|
|
54
54
|
|
|
55
55
|
type ParserPluginWithOptions =
|
|
56
56
|
| ["decorators", DecoratorsPluginOptions]
|
|
57
|
-
| ["discardBinding", { syntaxType: "void" }]
|
|
58
57
|
| ["estree", { classFeatures?: boolean }]
|
|
59
58
|
| IF_BABEL_7<["importAttributes", { deprecatedAssertSyntax: boolean }]>
|
|
60
59
|
| IF_BABEL_7<["moduleAttributes", { version: "may-2020" }]>
|
|
@@ -98,7 +97,6 @@ interface TypeScriptPluginOptions {
|
|
|
98
97
|
|
|
99
98
|
type Plugin = PluginConfig;
|
|
100
99
|
|
|
101
|
-
type SourceType = "script" | "commonjs" | "module" | "unambiguous";
|
|
102
100
|
interface Options {
|
|
103
101
|
/**
|
|
104
102
|
* By default, import and export declarations can only appear at a program's top level.
|
|
@@ -154,14 +152,12 @@ interface Options {
|
|
|
154
152
|
errorRecovery?: boolean;
|
|
155
153
|
/**
|
|
156
154
|
* Indicate the mode the code should be parsed in.
|
|
157
|
-
* Can be one of "script", "
|
|
155
|
+
* Can be one of "script", "module", or "unambiguous". Defaults to "script".
|
|
158
156
|
* "unambiguous" will make @babel/parser attempt to guess, based on the presence
|
|
159
157
|
* of ES6 import or export statements.
|
|
160
158
|
* Files with ES6 imports and exports are considered "module" and are otherwise "script".
|
|
161
|
-
*
|
|
162
|
-
* Use "commonjs" to parse code that is intended to be run in a CommonJS environment such as Node.js.
|
|
163
159
|
*/
|
|
164
|
-
sourceType?:
|
|
160
|
+
sourceType?: "script" | "module" | "unambiguous";
|
|
165
161
|
/**
|
|
166
162
|
* Correlate output AST nodes with their source filename.
|
|
167
163
|
* Useful when generating code and source maps from the ASTs of multiple input files.
|
|
@@ -20,7 +20,6 @@ var _pluginTransformDotallRegex = require("@babel/plugin-transform-dotall-regex"
|
|
|
20
20
|
var _pluginTransformDuplicateKeys = require("@babel/plugin-transform-duplicate-keys");
|
|
21
21
|
var _pluginTransformDuplicateNamedCapturingGroupsRegex = require("@babel/plugin-transform-duplicate-named-capturing-groups-regex");
|
|
22
22
|
var _pluginTransformDynamicImport = require("@babel/plugin-transform-dynamic-import");
|
|
23
|
-
var _pluginTransformExplicitResourceManagement = require("@babel/plugin-transform-explicit-resource-management");
|
|
24
23
|
var _pluginTransformExponentiationOperator = require("@babel/plugin-transform-exponentiation-operator");
|
|
25
24
|
var _pluginTransformExportNamespaceFrom = require("@babel/plugin-transform-export-namespace-from");
|
|
26
25
|
var _pluginTransformForOf = require("@babel/plugin-transform-for-of");
|
|
@@ -94,7 +93,6 @@ const availablePlugins = exports.default = {
|
|
|
94
93
|
"transform-duplicate-keys": () => _pluginTransformDuplicateKeys.default,
|
|
95
94
|
"transform-duplicate-named-capturing-groups-regex": () => _pluginTransformDuplicateNamedCapturingGroupsRegex.default,
|
|
96
95
|
"transform-dynamic-import": () => _pluginTransformDynamicImport.default,
|
|
97
|
-
"transform-explicit-resource-management": () => _pluginTransformExplicitResourceManagement.default,
|
|
98
96
|
"transform-exponentiation-operator": () => _pluginTransformExponentiationOperator.default,
|
|
99
97
|
"transform-export-namespace-from": () => _pluginTransformExportNamespaceFrom.default,
|
|
100
98
|
"transform-for-of": () => _pluginTransformForOf.default,
|
|
@@ -141,7 +139,6 @@ let legacyBabel7SyntaxPlugins = exports.legacyBabel7SyntaxPlugins = void 0;
|
|
|
141
139
|
"syntax-import-attributes": "7.22.0",
|
|
142
140
|
"transform-class-static-block": "7.12.0",
|
|
143
141
|
"transform-duplicate-named-capturing-groups-regex": "7.19.0",
|
|
144
|
-
"transform-explicit-resource-management": "7.23.9",
|
|
145
142
|
"transform-private-property-in-object": "7.10.0",
|
|
146
143
|
"transform-regexp-modifiers": "7.19.0"
|
|
147
144
|
});
|
|
@@ -153,7 +150,6 @@ let legacyBabel7SyntaxPlugins = exports.legacyBabel7SyntaxPlugins = void 0;
|
|
|
153
150
|
"syntax-class-properties": syntax("classProperties"),
|
|
154
151
|
"syntax-class-static-block": syntax("classStaticBlock"),
|
|
155
152
|
"syntax-dynamic-import": syntax("dynamicImport"),
|
|
156
|
-
"syntax-explicit-resource-management": syntax("explicitResourceManagement"),
|
|
157
153
|
"syntax-export-namespace-from": syntax("exportNamespaceFrom"),
|
|
158
154
|
"syntax-import-meta": syntax("importMeta"),
|
|
159
155
|
"syntax-json-strings": syntax("jsonStrings"),
|