@tachybase/module-cloud-component 1.3.17 → 1.3.18
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 +5 -4
- package/dist/client/index.js +314 -314
- package/dist/externalVersion.js +8 -8
- package/dist/node_modules/@babel/core/lib/index.js +23 -23
- 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 +7 -3
- package/dist/node_modules/@babel/preset-env/lib/available-plugins.js +4 -0
- package/dist/node_modules/@babel/preset-env/lib/index.js +54 -35
- package/dist/node_modules/@babel/preset-env/package.json +1 -1
- package/dist/node_modules/@babel/preset-react/lib/index.js +24 -24
- package/dist/node_modules/@babel/preset-react/package.json +1 -1
- package/dist/node_modules/@babel/preset-typescript/lib/index.js +23 -23
- 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 +13 -13
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@babel/parser","version":"7.
|
|
1
|
+
{"name":"@babel/parser","version":"7.28.0","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.28.0"},"devDependencies":{"@babel/code-frame":"^7.27.1","@babel/helper-check-duplicate-nodes":"^7.27.1","@babel/helper-fixtures":"^7.28.0","@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-17T07:46:11.188Z"}
|
|
@@ -22,7 +22,7 @@ type Plugin$1 =
|
|
|
22
22
|
| "deprecatedImportAssert"
|
|
23
23
|
| "doExpressions"
|
|
24
24
|
| IF_BABEL_7<"dynamicImport">
|
|
25
|
-
| "explicitResourceManagement"
|
|
25
|
+
| IF_BABEL_7<"explicitResourceManagement">
|
|
26
26
|
| "exportDefaultFrom"
|
|
27
27
|
| IF_BABEL_7<"exportNamespaceFrom">
|
|
28
28
|
| "flow"
|
|
@@ -54,6 +54,7 @@ type Plugin$1 =
|
|
|
54
54
|
|
|
55
55
|
type ParserPluginWithOptions =
|
|
56
56
|
| ["decorators", DecoratorsPluginOptions]
|
|
57
|
+
| ["discardBinding", { syntaxType: "void" }]
|
|
57
58
|
| ["estree", { classFeatures?: boolean }]
|
|
58
59
|
| IF_BABEL_7<["importAttributes", { deprecatedAssertSyntax: boolean }]>
|
|
59
60
|
| IF_BABEL_7<["moduleAttributes", { version: "may-2020" }]>
|
|
@@ -97,6 +98,7 @@ interface TypeScriptPluginOptions {
|
|
|
97
98
|
|
|
98
99
|
type Plugin = PluginConfig;
|
|
99
100
|
|
|
101
|
+
type SourceType = "script" | "commonjs" | "module" | "unambiguous";
|
|
100
102
|
interface Options {
|
|
101
103
|
/**
|
|
102
104
|
* By default, import and export declarations can only appear at a program's top level.
|
|
@@ -152,12 +154,14 @@ interface Options {
|
|
|
152
154
|
errorRecovery?: boolean;
|
|
153
155
|
/**
|
|
154
156
|
* Indicate the mode the code should be parsed in.
|
|
155
|
-
* Can be one of "script", "module", or "unambiguous". Defaults to "script".
|
|
157
|
+
* Can be one of "script", "commonjs", "module", or "unambiguous". Defaults to "script".
|
|
156
158
|
* "unambiguous" will make @babel/parser attempt to guess, based on the presence
|
|
157
159
|
* of ES6 import or export statements.
|
|
158
160
|
* 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.
|
|
159
163
|
*/
|
|
160
|
-
sourceType?:
|
|
164
|
+
sourceType?: SourceType;
|
|
161
165
|
/**
|
|
162
166
|
* Correlate output AST nodes with their source filename.
|
|
163
167
|
* Useful when generating code and source maps from the ASTs of multiple input files.
|
|
@@ -20,6 +20,7 @@ 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");
|
|
23
24
|
var _pluginTransformExponentiationOperator = require("@babel/plugin-transform-exponentiation-operator");
|
|
24
25
|
var _pluginTransformExportNamespaceFrom = require("@babel/plugin-transform-export-namespace-from");
|
|
25
26
|
var _pluginTransformForOf = require("@babel/plugin-transform-for-of");
|
|
@@ -93,6 +94,7 @@ const availablePlugins = exports.default = {
|
|
|
93
94
|
"transform-duplicate-keys": () => _pluginTransformDuplicateKeys.default,
|
|
94
95
|
"transform-duplicate-named-capturing-groups-regex": () => _pluginTransformDuplicateNamedCapturingGroupsRegex.default,
|
|
95
96
|
"transform-dynamic-import": () => _pluginTransformDynamicImport.default,
|
|
97
|
+
"transform-explicit-resource-management": () => _pluginTransformExplicitResourceManagement.default,
|
|
96
98
|
"transform-exponentiation-operator": () => _pluginTransformExponentiationOperator.default,
|
|
97
99
|
"transform-export-namespace-from": () => _pluginTransformExportNamespaceFrom.default,
|
|
98
100
|
"transform-for-of": () => _pluginTransformForOf.default,
|
|
@@ -139,6 +141,7 @@ let legacyBabel7SyntaxPlugins = exports.legacyBabel7SyntaxPlugins = void 0;
|
|
|
139
141
|
"syntax-import-attributes": "7.22.0",
|
|
140
142
|
"transform-class-static-block": "7.12.0",
|
|
141
143
|
"transform-duplicate-named-capturing-groups-regex": "7.19.0",
|
|
144
|
+
"transform-explicit-resource-management": "7.23.9",
|
|
142
145
|
"transform-private-property-in-object": "7.10.0",
|
|
143
146
|
"transform-regexp-modifiers": "7.19.0"
|
|
144
147
|
});
|
|
@@ -150,6 +153,7 @@ let legacyBabel7SyntaxPlugins = exports.legacyBabel7SyntaxPlugins = void 0;
|
|
|
150
153
|
"syntax-class-properties": syntax("classProperties"),
|
|
151
154
|
"syntax-class-static-block": syntax("classStaticBlock"),
|
|
152
155
|
"syntax-dynamic-import": syntax("dynamicImport"),
|
|
156
|
+
"syntax-explicit-resource-management": syntax("explicitResourceManagement"),
|
|
153
157
|
"syntax-export-namespace-from": syntax("exportNamespaceFrom"),
|
|
154
158
|
"syntax-import-meta": syntax("importMeta"),
|
|
155
159
|
"syntax-json-strings": syntax("jsonStrings"),
|