@absolutejs/absolute 0.20.0-beta.42 → 0.20.0-beta.44
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/angular/browser.js +378 -361
- package/dist/angular/browser.js.map +2 -2
- package/dist/angular/components/core/streamingSlotRegistrar.js +7 -7
- package/dist/angular/components/core/streamingSlotRegistry.js +4 -4
- package/dist/angular/index.js +300 -294
- package/dist/angular/index.js.map +2 -2
- package/dist/angular/server.js +54 -50
- package/dist/angular/server.js.map +2 -2
- package/dist/build.js +199 -203
- package/dist/build.js.map +2 -2
- package/dist/cli/config/client.js +12 -12
- package/dist/cli/config/server.js +1096 -1090
- package/dist/cli/index.js +595 -256
- package/dist/client/index.js +29 -25
- package/dist/client/index.js.map +2 -2
- package/dist/core/streamingSlotRegistrar.js +15 -13
- package/dist/core/streamingSlotRegistrar.js.map +2 -2
- package/dist/core/streamingSlotRegistry.js +11 -9
- package/dist/core/streamingSlotRegistry.js.map +2 -2
- package/dist/image-client/imageClient.js +7 -7
- package/dist/index.js +782 -732
- package/dist/index.js.map +6 -5
- package/dist/islands/browser.js +11 -9
- package/dist/islands/browser.js.map +2 -2
- package/dist/islands/index.js +39 -35
- package/dist/islands/index.js.map +2 -2
- package/dist/mobile/browser.js +23 -22
- package/dist/mobile/browser.js.map +2 -2
- package/dist/mobile/index.js +724 -488
- package/dist/mobile/index.js.map +12 -12
- package/dist/mobile/remoteMacAgentEntry.js +413 -14
- package/dist/mobile/shellBootstrap.js +0 -1
- package/dist/mobile/shellExpoAuth.js +184 -0
- package/dist/mobile/shellExpoDevices.js +4 -5
- package/dist/mobile/shellSync.js +4 -4
- package/dist/react/browser.js +17 -15
- package/dist/react/browser.js.map +2 -2
- package/dist/react/components/browser/index.js +107 -107
- package/dist/react/components/index.js +118 -116
- package/dist/react/components/index.js.map +2 -2
- package/dist/react/hooks/index.js +11 -9
- package/dist/react/hooks/index.js.map +2 -2
- package/dist/react/index.js +53 -49
- package/dist/react/index.js.map +2 -2
- package/dist/react/jsxDevRuntimeCompat.js +11 -9
- package/dist/react/jsxDevRuntimeCompat.js.map +2 -2
- package/dist/react/jsxRuntimeCompat.js +11 -9
- package/dist/react/jsxRuntimeCompat.js.map +2 -2
- package/dist/react/router/browser.js +9 -7
- package/dist/react/router/browser.js.map +2 -2
- package/dist/react/router/index.js +9 -7
- package/dist/react/router/index.js.map +2 -2
- package/dist/react/server.js +12 -10
- package/dist/react/server.js.map +2 -2
- package/dist/src/mobile/devDeviceAdapter.d.ts +1 -1
- package/dist/src/mobile/expoBridge.d.ts +12 -12
- package/dist/src/mobile/expoDevController.d.ts +8 -4
- package/dist/src/mobile/nativeAuth.d.ts +3 -0
- package/dist/src/mobile/remoteMacProtocol.d.ts +27 -0
- package/dist/src/mobile/remoteMacWire.d.ts +1 -1
- package/dist/src/mobile/shellExpoAuth.d.ts +12 -0
- package/dist/svelte/browser.js +12 -10
- package/dist/svelte/browser.js.map +2 -2
- package/dist/svelte/index.js +47 -43
- package/dist/svelte/index.js.map +2 -2
- package/dist/svelte/server.js +29 -27
- package/dist/svelte/server.js.map +2 -2
- package/dist/vue/browser.js +14 -12
- package/dist/vue/browser.js.map +2 -2
- package/dist/vue/components/Image.js +9 -7
- package/dist/vue/components/Image.js.map +2 -2
- package/dist/vue/components/index.js +11 -9
- package/dist/vue/components/index.js.map +2 -2
- package/dist/vue/index.js +52 -48
- package/dist/vue/index.js.map +2 -2
- package/dist/vue/server.js +14 -12
- package/dist/vue/server.js.map +2 -2
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -19,12 +19,14 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
19
19
|
}
|
|
20
20
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
21
21
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
if (mod && typeof mod === "object" || typeof mod === "function") {
|
|
23
|
+
for (let key of __getOwnPropNames(mod))
|
|
24
|
+
if (!__hasOwnProp.call(to, key))
|
|
25
|
+
__defProp(to, key, {
|
|
26
|
+
get: __accessProp.bind(mod, key),
|
|
27
|
+
enumerable: true
|
|
28
|
+
});
|
|
29
|
+
}
|
|
28
30
|
if (canCache)
|
|
29
31
|
cache.set(mod, to);
|
|
30
32
|
return to;
|
|
@@ -2273,10 +2275,10 @@ var init_ssrRender = __esm(() => {
|
|
|
2273
2275
|
// src/angular/islands.ts
|
|
2274
2276
|
var exports_islands = {};
|
|
2275
2277
|
__export(exports_islands, {
|
|
2276
|
-
|
|
2277
|
-
mountAngularIsland: () => mountAngularIsland,
|
|
2278
|
+
getAngularIslandSelector: () => getAngularIslandSelector,
|
|
2278
2279
|
isAngularComponent: () => isAngularComponent,
|
|
2279
|
-
|
|
2280
|
+
mountAngularIsland: () => mountAngularIsland,
|
|
2281
|
+
renderAngularIslandToHtml: () => renderAngularIslandToHtml
|
|
2280
2282
|
});
|
|
2281
2283
|
var angularIslandSelector = "abs-angular-island", getAngularIslandSelector = (_islandId) => angularIslandSelector, isAngularComponent = (value) => typeof value === "function", getSelectorFromRenderedIsland = (rootElement) => {
|
|
2282
2284
|
const firstChild = rootElement.firstElementChild;
|
|
@@ -2338,8 +2340,10 @@ var angularIslandSelector = "abs-angular-island", getAngularIslandSelector = (_i
|
|
|
2338
2340
|
const propsToken = new InjectionToken(`${wrapperKey}:props`);
|
|
2339
2341
|
|
|
2340
2342
|
class AngularIslandWrapperComponent {
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
+
constructor() {
|
|
2344
|
+
this.component = component;
|
|
2345
|
+
this.props = inject(propsToken);
|
|
2346
|
+
}
|
|
2343
2347
|
}
|
|
2344
2348
|
return {
|
|
2345
2349
|
deps,
|
|
@@ -2788,13 +2792,13 @@ var init_nativeRewrite = __esm(() => {
|
|
|
2788
2792
|
// src/build/rewriteImportsPlugin.ts
|
|
2789
2793
|
var exports_rewriteImportsPlugin = {};
|
|
2790
2794
|
__export(exports_rewriteImportsPlugin, {
|
|
2791
|
-
|
|
2792
|
-
rewriteImportsInContent: () => rewriteImportsInContent,
|
|
2793
|
-
rewriteBuildOutputsWith: () => rewriteBuildOutputsWith,
|
|
2794
|
-
rewriteBuildOutputs: () => rewriteBuildOutputs,
|
|
2795
|
-
jsRewriteImports: () => jsRewriteImports,
|
|
2795
|
+
buildWithImportRewrite: () => buildWithImportRewrite,
|
|
2796
2796
|
fixMissingReExportNamespacesInContent: () => fixMissingReExportNamespacesInContent,
|
|
2797
|
-
|
|
2797
|
+
jsRewriteImports: () => jsRewriteImports,
|
|
2798
|
+
rewriteBuildOutputs: () => rewriteBuildOutputs,
|
|
2799
|
+
rewriteBuildOutputsWith: () => rewriteBuildOutputsWith,
|
|
2800
|
+
rewriteImportsInContent: () => rewriteImportsInContent,
|
|
2801
|
+
rewriteVendorDirectories: () => rewriteVendorDirectories
|
|
2798
2802
|
});
|
|
2799
2803
|
import { readdir as readdir2 } from "fs/promises";
|
|
2800
2804
|
import { join as join4 } from "path";
|
|
@@ -3208,22 +3212,22 @@ var init_lowerAwaitSlotSyntax = __esm(() => {
|
|
|
3208
3212
|
// src/build/stylePreprocessor.ts
|
|
3209
3213
|
var exports_stylePreprocessor = {};
|
|
3210
3214
|
__export(exports_stylePreprocessor, {
|
|
3211
|
-
|
|
3212
|
-
recordStyleOutput: () => recordStyleOutput,
|
|
3213
|
-
isStylePath: () => isStylePath,
|
|
3214
|
-
isStyleModulePath: () => isStyleModulePath,
|
|
3215
|
-
isPreprocessableStylePath: () => isPreprocessableStylePath,
|
|
3216
|
-
getStyleBaseName: () => getStyleBaseName,
|
|
3217
|
-
getCssOutputExtension: () => getCssOutputExtension,
|
|
3218
|
-
forgetStyleEntry: () => forgetStyleEntry,
|
|
3219
|
-
findStyleEntriesImporting: () => findStyleEntriesImporting,
|
|
3220
|
-
createSvelteStylePreprocessor: () => createSvelteStylePreprocessor,
|
|
3221
|
-
createStyleTransformConfig: () => createStyleTransformConfig,
|
|
3222
|
-
createStylePreprocessorPlugin: () => createStylePreprocessorPlugin,
|
|
3223
|
-
compileStyleSource: () => compileStyleSource,
|
|
3224
|
-
compileStyleFileIfNeededSync: () => compileStyleFileIfNeededSync,
|
|
3215
|
+
addStyleImporter: () => addStyleImporter,
|
|
3225
3216
|
compileStyleFileIfNeeded: () => compileStyleFileIfNeeded,
|
|
3226
|
-
|
|
3217
|
+
compileStyleFileIfNeededSync: () => compileStyleFileIfNeededSync,
|
|
3218
|
+
compileStyleSource: () => compileStyleSource,
|
|
3219
|
+
createStylePreprocessorPlugin: () => createStylePreprocessorPlugin,
|
|
3220
|
+
createStyleTransformConfig: () => createStyleTransformConfig,
|
|
3221
|
+
createSvelteStylePreprocessor: () => createSvelteStylePreprocessor,
|
|
3222
|
+
findStyleEntriesImporting: () => findStyleEntriesImporting,
|
|
3223
|
+
forgetStyleEntry: () => forgetStyleEntry,
|
|
3224
|
+
getCssOutputExtension: () => getCssOutputExtension,
|
|
3225
|
+
getStyleBaseName: () => getStyleBaseName,
|
|
3226
|
+
isPreprocessableStylePath: () => isPreprocessableStylePath,
|
|
3227
|
+
isStyleModulePath: () => isStyleModulePath,
|
|
3228
|
+
isStylePath: () => isStylePath,
|
|
3229
|
+
recordStyleOutput: () => recordStyleOutput,
|
|
3230
|
+
stylePreprocessorPlugin: () => stylePreprocessorPlugin
|
|
3227
3231
|
});
|
|
3228
3232
|
import { createHash } from "crypto";
|
|
3229
3233
|
import { existsSync as existsSync4, readFileSync as readFileSync3 } from "fs";
|
|
@@ -4764,10 +4768,10 @@ var init_scanRouteRegistrations = __esm(() => {
|
|
|
4764
4768
|
// src/core/devRouteRegistrationCallsite.ts
|
|
4765
4769
|
var exports_devRouteRegistrationCallsite = {};
|
|
4766
4770
|
__export(exports_devRouteRegistrationCallsite, {
|
|
4767
|
-
|
|
4768
|
-
isPageHandler: () => isPageHandler,
|
|
4771
|
+
getCurrentRouteRegistrationCallsite: () => getCurrentRouteRegistrationCallsite,
|
|
4769
4772
|
getOriginalPageHandlerSource: () => getOriginalPageHandlerSource,
|
|
4770
|
-
|
|
4773
|
+
isPageHandler: () => isPageHandler,
|
|
4774
|
+
patchElysiaRouteRegistrationCallsites: () => patchElysiaRouteRegistrationCallsites
|
|
4771
4775
|
});
|
|
4772
4776
|
import { AsyncLocalStorage } from "async_hooks";
|
|
4773
4777
|
import { Elysia } from "elysia";
|
|
@@ -10817,12 +10821,12 @@ var init_chunk_U7LQKMN6 = __esm(() => {
|
|
|
10817
10821
|
// node_modules/tailwindcss/dist/lib.mjs
|
|
10818
10822
|
var exports_lib = {};
|
|
10819
10823
|
__export(exports_lib, {
|
|
10820
|
-
|
|
10821
|
-
compileAst: () => pn,
|
|
10822
|
-
compile: () => xa,
|
|
10823
|
-
__unstable__loadDesignSystem: () => Aa,
|
|
10824
|
+
Features: () => Pe,
|
|
10824
10825
|
Polyfills: () => pt,
|
|
10825
|
-
|
|
10826
|
+
__unstable__loadDesignSystem: () => Aa,
|
|
10827
|
+
compile: () => xa,
|
|
10828
|
+
compileAst: () => pn,
|
|
10829
|
+
default: () => mn
|
|
10826
10830
|
});
|
|
10827
10831
|
var init_lib = __esm(() => {
|
|
10828
10832
|
init_chunk_U7LQKMN6();
|
|
@@ -10833,9 +10837,9 @@ var init_lib = __esm(() => {
|
|
|
10833
10837
|
// src/build/tailwindCompiler.ts
|
|
10834
10838
|
var exports_tailwindCompiler = {};
|
|
10835
10839
|
__export(exports_tailwindCompiler, {
|
|
10836
|
-
|
|
10840
|
+
disposeTailwindCompiler: () => disposeTailwindCompiler,
|
|
10837
10841
|
incrementalTailwindBuild: () => incrementalTailwindBuild,
|
|
10838
|
-
|
|
10842
|
+
warmTailwindCompiler: () => warmTailwindCompiler
|
|
10839
10843
|
});
|
|
10840
10844
|
import { createHash as createHash2 } from "crypto";
|
|
10841
10845
|
import { existsSync as existsSync13, readFileSync as readFileSync7 } from "fs";
|
|
@@ -11032,10 +11036,10 @@ var init_tailwindCompiler = __esm(() => {
|
|
|
11032
11036
|
// src/build/compileTailwind.ts
|
|
11033
11037
|
var exports_compileTailwind = {};
|
|
11034
11038
|
__export(exports_compileTailwind, {
|
|
11035
|
-
|
|
11036
|
-
computeFrameworkTailwindSources: () => computeFrameworkTailwindSources,
|
|
11039
|
+
compileTailwind: () => compileTailwind,
|
|
11037
11040
|
compileTailwindConfig: () => compileTailwindConfig,
|
|
11038
|
-
|
|
11041
|
+
computeFrameworkTailwindSources: () => computeFrameworkTailwindSources,
|
|
11042
|
+
isTailwindCandidate: () => isTailwindCandidate
|
|
11039
11043
|
});
|
|
11040
11044
|
import { mkdir as mkdir4 } from "fs/promises";
|
|
11041
11045
|
import { dirname as dirname8, join as join15, resolve as resolve12 } from "path";
|
|
@@ -11608,18 +11612,18 @@ var init_rewriteReactImports = __esm(() => {
|
|
|
11608
11612
|
// src/core/devVendorPaths.ts
|
|
11609
11613
|
var exports_devVendorPaths = {};
|
|
11610
11614
|
__export(exports_devVendorPaths, {
|
|
11611
|
-
|
|
11612
|
-
setSvelteVendorPaths: () => setSvelteVendorPaths,
|
|
11613
|
-
setEmberVendorPaths: () => setEmberVendorPaths,
|
|
11614
|
-
setDevVendorPaths: () => setDevVendorPaths,
|
|
11615
|
-
setAngularVendorPaths: () => setAngularVendorPaths,
|
|
11616
|
-
setAngularServerVendorPaths: () => setAngularServerVendorPaths,
|
|
11617
|
-
getVueVendorPaths: () => getVueVendorPaths,
|
|
11618
|
-
getSvelteVendorPaths: () => getSvelteVendorPaths,
|
|
11619
|
-
getEmberVendorPaths: () => getEmberVendorPaths,
|
|
11620
|
-
getDevVendorPaths: () => getDevVendorPaths,
|
|
11615
|
+
getAngularServerVendorPaths: () => getAngularServerVendorPaths,
|
|
11621
11616
|
getAngularVendorPaths: () => getAngularVendorPaths,
|
|
11622
|
-
|
|
11617
|
+
getDevVendorPaths: () => getDevVendorPaths,
|
|
11618
|
+
getEmberVendorPaths: () => getEmberVendorPaths,
|
|
11619
|
+
getSvelteVendorPaths: () => getSvelteVendorPaths,
|
|
11620
|
+
getVueVendorPaths: () => getVueVendorPaths,
|
|
11621
|
+
setAngularServerVendorPaths: () => setAngularServerVendorPaths,
|
|
11622
|
+
setAngularVendorPaths: () => setAngularVendorPaths,
|
|
11623
|
+
setDevVendorPaths: () => setDevVendorPaths,
|
|
11624
|
+
setEmberVendorPaths: () => setEmberVendorPaths,
|
|
11625
|
+
setSvelteVendorPaths: () => setSvelteVendorPaths,
|
|
11626
|
+
setVueVendorPaths: () => setVueVendorPaths
|
|
11623
11627
|
});
|
|
11624
11628
|
var devVendorPaths = null, getDevVendorPaths = () => devVendorPaths, setDevVendorPaths = (paths) => {
|
|
11625
11629
|
devVendorPaths = paths;
|
|
@@ -12024,8 +12028,8 @@ var init_islandRegistryTransform = __esm(() => {
|
|
|
12024
12028
|
// src/dev/angular/hmrInjectionPlugin.ts
|
|
12025
12029
|
var exports_hmrInjectionPlugin = {};
|
|
12026
12030
|
__export(exports_hmrInjectionPlugin, {
|
|
12027
|
-
|
|
12028
|
-
|
|
12031
|
+
applyAngularHmrInjection: () => applyAngularHmrInjection,
|
|
12032
|
+
createAngularHmrInjectionPlugin: () => createAngularHmrInjectionPlugin
|
|
12029
12033
|
});
|
|
12030
12034
|
import { readFile as readFile5 } from "fs/promises";
|
|
12031
12035
|
import { relative as relative9, resolve as resolve17 } from "path";
|
|
@@ -12283,8 +12287,8 @@ var init_cleanStaleOutputs = __esm(() => {
|
|
|
12283
12287
|
// src/utils/generatedDir.ts
|
|
12284
12288
|
var exports_generatedDir = {};
|
|
12285
12289
|
__export(exports_generatedDir, {
|
|
12286
|
-
|
|
12287
|
-
|
|
12290
|
+
getFrameworkGeneratedDir: () => getFrameworkGeneratedDir,
|
|
12291
|
+
getGeneratedRoot: () => getGeneratedRoot
|
|
12288
12292
|
});
|
|
12289
12293
|
import { join as join21 } from "path";
|
|
12290
12294
|
var GENERATED_DIR_NAME = "generated", ABSOLUTE_CACHE_DIR_NAME = ".absolutejs", getFrameworkGeneratedDir = (framework, projectRoot = process.cwd()) => join21(getGeneratedRoot(projectRoot), framework), getGeneratedRoot = (projectRoot = process.cwd()) => join21(projectRoot, ABSOLUTE_CACHE_DIR_NAME, GENERATED_DIR_NAME);
|
|
@@ -14323,8 +14327,8 @@ var init_sourceMetadata = __esm(() => {
|
|
|
14323
14327
|
// src/svelte/renderToReadableStream.ts
|
|
14324
14328
|
var exports_renderToReadableStream = {};
|
|
14325
14329
|
__export(exports_renderToReadableStream, {
|
|
14326
|
-
|
|
14327
|
-
|
|
14330
|
+
SVELTE_PAGE_ROOT_ID: () => SVELTE_PAGE_ROOT_ID,
|
|
14331
|
+
renderToReadableStream: () => renderToReadableStream
|
|
14328
14332
|
});
|
|
14329
14333
|
var SVELTE_PAGE_ROOT_ID = "__absolute_svelte_root__", renderToReadableStream = async (component2, props, {
|
|
14330
14334
|
bootstrapScriptContent,
|
|
@@ -14379,8 +14383,8 @@ var init_renderToReadableStream = __esm(() => {
|
|
|
14379
14383
|
// src/build/compileSvelte.ts
|
|
14380
14384
|
var exports_compileSvelte = {};
|
|
14381
14385
|
__export(exports_compileSvelte, {
|
|
14382
|
-
|
|
14383
|
-
|
|
14386
|
+
clearSvelteCompilerCache: () => clearSvelteCompilerCache,
|
|
14387
|
+
compileSvelte: () => compileSvelte
|
|
14384
14388
|
});
|
|
14385
14389
|
import { existsSync as existsSync21 } from "fs";
|
|
14386
14390
|
import { mkdir as mkdir6, stat as stat2 } from "fs/promises";
|
|
@@ -14810,12 +14814,12 @@ var init_parseVueSpaRoutes = () => {};
|
|
|
14810
14814
|
// src/build/chainInlineSourcemaps.ts
|
|
14811
14815
|
var exports_chainInlineSourcemaps = {};
|
|
14812
14816
|
__export(exports_chainInlineSourcemaps, {
|
|
14813
|
-
|
|
14814
|
-
inlineLineMapComment: () => inlineLineMapComment,
|
|
14815
|
-
chainSourcemap: () => chainSourcemap,
|
|
14816
|
-
chainExternalSourcemap: () => chainExternalSourcemap,
|
|
14817
|
+
buildLineRemap: () => buildLineRemap,
|
|
14817
14818
|
chainBundleInlineSourcemap: () => chainBundleInlineSourcemap,
|
|
14818
|
-
|
|
14819
|
+
chainExternalSourcemap: () => chainExternalSourcemap,
|
|
14820
|
+
chainSourcemap: () => chainSourcemap,
|
|
14821
|
+
inlineLineMapComment: () => inlineLineMapComment,
|
|
14822
|
+
remapGeneratedLines: () => remapGeneratedLines
|
|
14819
14823
|
});
|
|
14820
14824
|
import { readFileSync as readFileSync19, writeFileSync as writeFileSync7 } from "fs";
|
|
14821
14825
|
var BASE64_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", BASE64_TO_INT, decodeVlq = (str, startPos) => {
|
|
@@ -15221,11 +15225,11 @@ var init_vueAutoRouterTransform = __esm(() => {
|
|
|
15221
15225
|
// src/build/compileVue.ts
|
|
15222
15226
|
var exports_compileVue = {};
|
|
15223
15227
|
__export(exports_compileVue, {
|
|
15224
|
-
|
|
15225
|
-
generateVueHmrId: () => generateVueHmrId,
|
|
15226
|
-
detectVueChangeType: () => detectVueChangeType,
|
|
15228
|
+
clearVueHmrCaches: () => clearVueHmrCaches,
|
|
15227
15229
|
compileVue: () => compileVue,
|
|
15228
|
-
|
|
15230
|
+
detectVueChangeType: () => detectVueChangeType,
|
|
15231
|
+
generateVueHmrId: () => generateVueHmrId,
|
|
15232
|
+
vueHmrMetadata: () => vueHmrMetadata
|
|
15229
15233
|
});
|
|
15230
15234
|
import { existsSync as existsSync22, readFileSync as readFileSync20, realpathSync as realpathSync2 } from "fs";
|
|
15231
15235
|
import { mkdir as mkdir7 } from "fs/promises";
|
|
@@ -16320,11 +16324,11 @@ var init_lowerDeferSyntax = __esm(() => {
|
|
|
16320
16324
|
// src/build/compileAngular.ts
|
|
16321
16325
|
var exports_compileAngular = {};
|
|
16322
16326
|
__export(exports_compileAngular, {
|
|
16323
|
-
|
|
16324
|
-
compileAngularFiles: () => compileAngularFiles,
|
|
16325
|
-
compileAngularFileJIT: () => compileAngularFileJIT,
|
|
16327
|
+
compileAngular: () => compileAngular,
|
|
16326
16328
|
compileAngularFile: () => compileAngularFile,
|
|
16327
|
-
|
|
16329
|
+
compileAngularFileJIT: () => compileAngularFileJIT,
|
|
16330
|
+
compileAngularFiles: () => compileAngularFiles,
|
|
16331
|
+
invalidateAngularJitCache: () => invalidateAngularJitCache
|
|
16328
16332
|
});
|
|
16329
16333
|
import { existsSync as existsSync23, readFileSync as readFileSync21, promises as fs5 } from "fs";
|
|
16330
16334
|
import { join as join33, basename as basename12, sep as sep3, dirname as dirname18, resolve as resolve24, relative as relative14 } from "path";
|
|
@@ -17697,7 +17701,6 @@ var init_hmrImportGenerator = () => {};
|
|
|
17697
17701
|
|
|
17698
17702
|
// src/dev/angular/vendor/translator/context.ts
|
|
17699
17703
|
class Context {
|
|
17700
|
-
isStatement;
|
|
17701
17704
|
constructor(isStatement) {
|
|
17702
17705
|
this.isStatement = isStatement;
|
|
17703
17706
|
}
|
|
@@ -17711,12 +17714,6 @@ class Context {
|
|
|
17711
17714
|
|
|
17712
17715
|
// src/dev/angular/vendor/translator/translator.ts
|
|
17713
17716
|
class ExpressionTranslatorVisitor {
|
|
17714
|
-
factory;
|
|
17715
|
-
imports;
|
|
17716
|
-
contextFile;
|
|
17717
|
-
downlevelTaggedTemplates;
|
|
17718
|
-
downlevelVariableDeclarations;
|
|
17719
|
-
recordWrappedNode;
|
|
17720
17717
|
constructor(factory, imports, contextFile, options) {
|
|
17721
17718
|
this.factory = factory;
|
|
17722
17719
|
this.imports = imports;
|
|
@@ -18085,56 +18082,64 @@ var init_ts_util = __esm(() => {
|
|
|
18085
18082
|
import ts17 from "typescript";
|
|
18086
18083
|
|
|
18087
18084
|
class TypeScriptAstFactory {
|
|
18088
|
-
annotateForClosureCompiler;
|
|
18089
|
-
externalSourceFiles = new Map;
|
|
18090
|
-
UNARY_OPERATORS = /* @__PURE__ */ (() => ({
|
|
18091
|
-
"+": ts17.SyntaxKind.PlusToken,
|
|
18092
|
-
"-": ts17.SyntaxKind.MinusToken,
|
|
18093
|
-
"!": ts17.SyntaxKind.ExclamationToken
|
|
18094
|
-
}))();
|
|
18095
|
-
BINARY_OPERATORS = /* @__PURE__ */ (() => ({
|
|
18096
|
-
"&&": ts17.SyntaxKind.AmpersandAmpersandToken,
|
|
18097
|
-
">": ts17.SyntaxKind.GreaterThanToken,
|
|
18098
|
-
">=": ts17.SyntaxKind.GreaterThanEqualsToken,
|
|
18099
|
-
"&": ts17.SyntaxKind.AmpersandToken,
|
|
18100
|
-
"|": ts17.SyntaxKind.BarToken,
|
|
18101
|
-
"/": ts17.SyntaxKind.SlashToken,
|
|
18102
|
-
"==": ts17.SyntaxKind.EqualsEqualsToken,
|
|
18103
|
-
"===": ts17.SyntaxKind.EqualsEqualsEqualsToken,
|
|
18104
|
-
"<": ts17.SyntaxKind.LessThanToken,
|
|
18105
|
-
"<=": ts17.SyntaxKind.LessThanEqualsToken,
|
|
18106
|
-
"-": ts17.SyntaxKind.MinusToken,
|
|
18107
|
-
"%": ts17.SyntaxKind.PercentToken,
|
|
18108
|
-
"*": ts17.SyntaxKind.AsteriskToken,
|
|
18109
|
-
"**": ts17.SyntaxKind.AsteriskAsteriskToken,
|
|
18110
|
-
"!=": ts17.SyntaxKind.ExclamationEqualsToken,
|
|
18111
|
-
"!==": ts17.SyntaxKind.ExclamationEqualsEqualsToken,
|
|
18112
|
-
"||": ts17.SyntaxKind.BarBarToken,
|
|
18113
|
-
"+": ts17.SyntaxKind.PlusToken,
|
|
18114
|
-
"??": ts17.SyntaxKind.QuestionQuestionToken,
|
|
18115
|
-
"=": ts17.SyntaxKind.EqualsToken,
|
|
18116
|
-
"+=": ts17.SyntaxKind.PlusEqualsToken,
|
|
18117
|
-
"-=": ts17.SyntaxKind.MinusEqualsToken,
|
|
18118
|
-
"*=": ts17.SyntaxKind.AsteriskEqualsToken,
|
|
18119
|
-
"/=": ts17.SyntaxKind.SlashEqualsToken,
|
|
18120
|
-
"%=": ts17.SyntaxKind.PercentEqualsToken,
|
|
18121
|
-
"**=": ts17.SyntaxKind.AsteriskAsteriskEqualsToken,
|
|
18122
|
-
"&&=": ts17.SyntaxKind.AmpersandAmpersandEqualsToken,
|
|
18123
|
-
"||=": ts17.SyntaxKind.BarBarEqualsToken,
|
|
18124
|
-
"??=": ts17.SyntaxKind.QuestionQuestionEqualsToken,
|
|
18125
|
-
in: ts17.SyntaxKind.InKeyword,
|
|
18126
|
-
instanceof: ts17.SyntaxKind.InstanceOfKeyword
|
|
18127
|
-
}))();
|
|
18128
|
-
VAR_TYPES = /* @__PURE__ */ (() => ({
|
|
18129
|
-
const: ts17.NodeFlags.Const,
|
|
18130
|
-
let: ts17.NodeFlags.Let,
|
|
18131
|
-
var: ts17.NodeFlags.None
|
|
18132
|
-
}))();
|
|
18133
18085
|
constructor(annotateForClosureCompiler) {
|
|
18134
18086
|
this.annotateForClosureCompiler = annotateForClosureCompiler;
|
|
18087
|
+
this.externalSourceFiles = new Map;
|
|
18088
|
+
this.UNARY_OPERATORS = /* @__PURE__ */ (() => ({
|
|
18089
|
+
"+": ts17.SyntaxKind.PlusToken,
|
|
18090
|
+
"-": ts17.SyntaxKind.MinusToken,
|
|
18091
|
+
"!": ts17.SyntaxKind.ExclamationToken
|
|
18092
|
+
}))();
|
|
18093
|
+
this.BINARY_OPERATORS = /* @__PURE__ */ (() => ({
|
|
18094
|
+
"&&": ts17.SyntaxKind.AmpersandAmpersandToken,
|
|
18095
|
+
">": ts17.SyntaxKind.GreaterThanToken,
|
|
18096
|
+
">=": ts17.SyntaxKind.GreaterThanEqualsToken,
|
|
18097
|
+
"&": ts17.SyntaxKind.AmpersandToken,
|
|
18098
|
+
"|": ts17.SyntaxKind.BarToken,
|
|
18099
|
+
"/": ts17.SyntaxKind.SlashToken,
|
|
18100
|
+
"==": ts17.SyntaxKind.EqualsEqualsToken,
|
|
18101
|
+
"===": ts17.SyntaxKind.EqualsEqualsEqualsToken,
|
|
18102
|
+
"<": ts17.SyntaxKind.LessThanToken,
|
|
18103
|
+
"<=": ts17.SyntaxKind.LessThanEqualsToken,
|
|
18104
|
+
"-": ts17.SyntaxKind.MinusToken,
|
|
18105
|
+
"%": ts17.SyntaxKind.PercentToken,
|
|
18106
|
+
"*": ts17.SyntaxKind.AsteriskToken,
|
|
18107
|
+
"**": ts17.SyntaxKind.AsteriskAsteriskToken,
|
|
18108
|
+
"!=": ts17.SyntaxKind.ExclamationEqualsToken,
|
|
18109
|
+
"!==": ts17.SyntaxKind.ExclamationEqualsEqualsToken,
|
|
18110
|
+
"||": ts17.SyntaxKind.BarBarToken,
|
|
18111
|
+
"+": ts17.SyntaxKind.PlusToken,
|
|
18112
|
+
"??": ts17.SyntaxKind.QuestionQuestionToken,
|
|
18113
|
+
"=": ts17.SyntaxKind.EqualsToken,
|
|
18114
|
+
"+=": ts17.SyntaxKind.PlusEqualsToken,
|
|
18115
|
+
"-=": ts17.SyntaxKind.MinusEqualsToken,
|
|
18116
|
+
"*=": ts17.SyntaxKind.AsteriskEqualsToken,
|
|
18117
|
+
"/=": ts17.SyntaxKind.SlashEqualsToken,
|
|
18118
|
+
"%=": ts17.SyntaxKind.PercentEqualsToken,
|
|
18119
|
+
"**=": ts17.SyntaxKind.AsteriskAsteriskEqualsToken,
|
|
18120
|
+
"&&=": ts17.SyntaxKind.AmpersandAmpersandEqualsToken,
|
|
18121
|
+
"||=": ts17.SyntaxKind.BarBarEqualsToken,
|
|
18122
|
+
"??=": ts17.SyntaxKind.QuestionQuestionEqualsToken,
|
|
18123
|
+
in: ts17.SyntaxKind.InKeyword,
|
|
18124
|
+
instanceof: ts17.SyntaxKind.InstanceOfKeyword
|
|
18125
|
+
}))();
|
|
18126
|
+
this.VAR_TYPES = /* @__PURE__ */ (() => ({
|
|
18127
|
+
const: ts17.NodeFlags.Const,
|
|
18128
|
+
let: ts17.NodeFlags.Let,
|
|
18129
|
+
var: ts17.NodeFlags.None
|
|
18130
|
+
}))();
|
|
18131
|
+
this.attachComments = attachComments;
|
|
18132
|
+
this.createArrayLiteral = ts17.factory.createArrayLiteralExpression;
|
|
18133
|
+
this.createElementAccess = ts17.factory.createElementAccessExpression;
|
|
18134
|
+
this.createExpressionStatement = ts17.factory.createExpressionStatement;
|
|
18135
|
+
this.createIdentifier = ts17.factory.createIdentifier;
|
|
18136
|
+
this.createParenthesizedExpression = ts17.factory.createParenthesizedExpression;
|
|
18137
|
+
this.createPropertyAccess = ts17.factory.createPropertyAccessExpression;
|
|
18138
|
+
this.createSpreadElement = ts17.factory.createSpreadElement;
|
|
18139
|
+
this.createThrowStatement = ts17.factory.createThrowStatement;
|
|
18140
|
+
this.createTypeOfExpression = ts17.factory.createTypeOfExpression;
|
|
18141
|
+
this.createVoidExpression = ts17.factory.createVoidExpression;
|
|
18135
18142
|
}
|
|
18136
|
-
attachComments = attachComments;
|
|
18137
|
-
createArrayLiteral = ts17.factory.createArrayLiteralExpression;
|
|
18138
18143
|
createAssignment(target, operator, value) {
|
|
18139
18144
|
return ts17.factory.createBinaryExpression(target, this.BINARY_OPERATORS[operator], value);
|
|
18140
18145
|
}
|
|
@@ -18154,8 +18159,6 @@ class TypeScriptAstFactory {
|
|
|
18154
18159
|
createConditional(condition, whenTrue, whenFalse) {
|
|
18155
18160
|
return ts17.factory.createConditionalExpression(condition, undefined, whenTrue, undefined, whenFalse);
|
|
18156
18161
|
}
|
|
18157
|
-
createElementAccess = ts17.factory.createElementAccessExpression;
|
|
18158
|
-
createExpressionStatement = ts17.factory.createExpressionStatement;
|
|
18159
18162
|
createDynamicImport(url) {
|
|
18160
18163
|
return ts17.factory.createCallExpression(ts17.factory.createToken(ts17.SyntaxKind.ImportKeyword), undefined, [
|
|
18161
18164
|
typeof url === "string" ? ts17.factory.createStringLiteral(url) : url
|
|
@@ -18182,7 +18185,6 @@ class TypeScriptAstFactory {
|
|
|
18182
18185
|
createParameter(param) {
|
|
18183
18186
|
return ts17.factory.createParameterDeclaration(undefined, undefined, param.name, undefined, param.type ?? undefined);
|
|
18184
18187
|
}
|
|
18185
|
-
createIdentifier = ts17.factory.createIdentifier;
|
|
18186
18188
|
createIfStatement(condition, thenStatement, elseStatement) {
|
|
18187
18189
|
return ts17.factory.createIfStatement(condition, thenStatement, elseStatement ?? undefined);
|
|
18188
18190
|
}
|
|
@@ -18210,9 +18212,6 @@ class TypeScriptAstFactory {
|
|
|
18210
18212
|
return ts17.factory.createPropertyAssignment(prop.quoted ? ts17.factory.createStringLiteral(prop.propertyName) : ts17.factory.createIdentifier(prop.propertyName), prop.value);
|
|
18211
18213
|
}));
|
|
18212
18214
|
}
|
|
18213
|
-
createParenthesizedExpression = ts17.factory.createParenthesizedExpression;
|
|
18214
|
-
createPropertyAccess = ts17.factory.createPropertyAccessExpression;
|
|
18215
|
-
createSpreadElement = ts17.factory.createSpreadElement;
|
|
18216
18215
|
createReturnStatement(expression) {
|
|
18217
18216
|
return ts17.factory.createReturnStatement(expression ?? undefined);
|
|
18218
18217
|
}
|
|
@@ -18260,9 +18259,6 @@ class TypeScriptAstFactory {
|
|
|
18260
18259
|
}
|
|
18261
18260
|
return templateLiteral;
|
|
18262
18261
|
}
|
|
18263
|
-
createThrowStatement = ts17.factory.createThrowStatement;
|
|
18264
|
-
createTypeOfExpression = ts17.factory.createTypeOfExpression;
|
|
18265
|
-
createVoidExpression = ts17.factory.createVoidExpression;
|
|
18266
18262
|
createUnaryExpression(operator, operand) {
|
|
18267
18263
|
return ts17.factory.createPrefixUnaryExpression(this.UNARY_OPERATORS[operator], operand);
|
|
18268
18264
|
}
|
|
@@ -18390,11 +18386,11 @@ var init_typescript_translator = __esm(() => {
|
|
|
18390
18386
|
// src/dev/angular/fastHmrCompiler.ts
|
|
18391
18387
|
var exports_fastHmrCompiler = {};
|
|
18392
18388
|
__export(exports_fastHmrCompiler, {
|
|
18393
|
-
|
|
18394
|
-
takePendingModule: () => takePendingModule,
|
|
18395
|
-
recordFingerprint: () => recordFingerprint,
|
|
18389
|
+
invalidateFingerprintCache: () => invalidateFingerprintCache,
|
|
18396
18390
|
primeComponentFingerprint: () => primeComponentFingerprint,
|
|
18397
|
-
|
|
18391
|
+
recordFingerprint: () => recordFingerprint,
|
|
18392
|
+
takePendingModule: () => takePendingModule,
|
|
18393
|
+
tryFastHmr: () => tryFastHmr
|
|
18398
18394
|
});
|
|
18399
18395
|
import { existsSync as existsSync24, readFileSync as readFileSync22, statSync as statSync2 } from "fs";
|
|
18400
18396
|
import { dirname as dirname19, extname as extname9, relative as relative15, resolve as resolve25 } from "path";
|
|
@@ -20462,7 +20458,7 @@ var init_fastHmrCompiler = __esm(() => {
|
|
|
20462
20458
|
});
|
|
20463
20459
|
|
|
20464
20460
|
// node_modules/content-tag/pkg/node/content_tag.cjs
|
|
20465
|
-
var require_content_tag = __commonJS((exports, module)
|
|
20461
|
+
var require_content_tag = __commonJS(function(exports, module) {
|
|
20466
20462
|
var __dirname = "/home/alexkahn/abs/absolutejs/node_modules/content-tag/pkg/node";
|
|
20467
20463
|
var imports = {};
|
|
20468
20464
|
imports["__wbindgen_placeholder__"] = exports;
|
|
@@ -20890,7 +20886,7 @@ ${val.stack}`;
|
|
|
20890
20886
|
});
|
|
20891
20887
|
|
|
20892
20888
|
// node_modules/content-tag/pkg/node.cjs
|
|
20893
|
-
var require_node = __commonJS((exports, module)
|
|
20889
|
+
var require_node = __commonJS(function(exports, module) {
|
|
20894
20890
|
var { Preprocessor } = require_content_tag();
|
|
20895
20891
|
exports.Preprocessor = Preprocessor;
|
|
20896
20892
|
});
|
|
@@ -20898,15 +20894,15 @@ var require_node = __commonJS((exports, module) => {
|
|
|
20898
20894
|
// src/build/compileEmber.ts
|
|
20899
20895
|
var exports_compileEmber = {};
|
|
20900
20896
|
__export(exports_compileEmber, {
|
|
20901
|
-
|
|
20902
|
-
getEmberCompiledRoot: () => getEmberCompiledRoot,
|
|
20903
|
-
getEmberClientCompiledDir: () => getEmberClientCompiledDir,
|
|
20904
|
-
dirname: () => dirname20,
|
|
20905
|
-
compileEmberFileSource: () => compileEmberFileSource,
|
|
20906
|
-
compileEmberFile: () => compileEmberFile,
|
|
20907
|
-
compileEmber: () => compileEmber,
|
|
20897
|
+
basename: () => basename13,
|
|
20908
20898
|
clearEmberCompilerCache: () => clearEmberCompilerCache,
|
|
20909
|
-
|
|
20899
|
+
compileEmber: () => compileEmber,
|
|
20900
|
+
compileEmberFile: () => compileEmberFile,
|
|
20901
|
+
compileEmberFileSource: () => compileEmberFileSource,
|
|
20902
|
+
dirname: () => dirname20,
|
|
20903
|
+
getEmberClientCompiledDir: () => getEmberClientCompiledDir,
|
|
20904
|
+
getEmberCompiledRoot: () => getEmberCompiledRoot,
|
|
20905
|
+
getEmberServerCompiledDir: () => getEmberServerCompiledDir
|
|
20910
20906
|
});
|
|
20911
20907
|
import { existsSync as existsSync25 } from "fs";
|
|
20912
20908
|
import { mkdir as mkdir8, rm as rm5 } from "fs/promises";
|
|
@@ -21157,8 +21153,8 @@ var init_compileEmber = __esm(() => {
|
|
|
21157
21153
|
// src/build/buildReactVendor.ts
|
|
21158
21154
|
var exports_buildReactVendor = {};
|
|
21159
21155
|
__export(exports_buildReactVendor, {
|
|
21160
|
-
|
|
21161
|
-
|
|
21156
|
+
buildReactVendor: () => buildReactVendor,
|
|
21157
|
+
computeVendorPaths: () => computeVendorPaths
|
|
21162
21158
|
});
|
|
21163
21159
|
import { existsSync as existsSync26, mkdirSync as mkdirSync8 } from "fs";
|
|
21164
21160
|
import { join as join35, resolve as resolve27 } from "path";
|
|
@@ -21278,12 +21274,12 @@ var init_vendorEntrySource = __esm(() => {
|
|
|
21278
21274
|
// src/build/buildAngularVendor.ts
|
|
21279
21275
|
var exports_buildAngularVendor = {};
|
|
21280
21276
|
__export(exports_buildAngularVendor, {
|
|
21281
|
-
|
|
21282
|
-
computeAngularVendorPaths: () => computeAngularVendorPaths,
|
|
21283
|
-
computeAngularServerVendorPathsAsync: () => computeAngularServerVendorPathsAsync,
|
|
21284
|
-
computeAngularServerVendorPaths: () => computeAngularServerVendorPaths,
|
|
21277
|
+
buildAngularServerVendor: () => buildAngularServerVendor,
|
|
21285
21278
|
buildAngularVendor: () => buildAngularVendor,
|
|
21286
|
-
|
|
21279
|
+
computeAngularServerVendorPaths: () => computeAngularServerVendorPaths,
|
|
21280
|
+
computeAngularServerVendorPathsAsync: () => computeAngularServerVendorPathsAsync,
|
|
21281
|
+
computeAngularVendorPaths: () => computeAngularVendorPaths,
|
|
21282
|
+
computeAngularVendorPathsAsync: () => computeAngularVendorPathsAsync
|
|
21287
21283
|
});
|
|
21288
21284
|
import { mkdirSync as mkdirSync9 } from "fs";
|
|
21289
21285
|
import { join as join36 } from "path";
|
|
@@ -21510,8 +21506,8 @@ var init_buildAngularVendor = __esm(() => {
|
|
|
21510
21506
|
// src/build/buildVueVendor.ts
|
|
21511
21507
|
var exports_buildVueVendor = {};
|
|
21512
21508
|
__export(exports_buildVueVendor, {
|
|
21513
|
-
|
|
21514
|
-
|
|
21509
|
+
buildVueVendor: () => buildVueVendor,
|
|
21510
|
+
computeVueVendorPaths: () => computeVueVendorPaths
|
|
21515
21511
|
});
|
|
21516
21512
|
import { mkdirSync as mkdirSync10 } from "fs";
|
|
21517
21513
|
import { join as join37 } from "path";
|
|
@@ -21575,8 +21571,8 @@ var init_buildVueVendor = __esm(() => {
|
|
|
21575
21571
|
// src/build/buildSvelteVendor.ts
|
|
21576
21572
|
var exports_buildSvelteVendor = {};
|
|
21577
21573
|
__export(exports_buildSvelteVendor, {
|
|
21578
|
-
|
|
21579
|
-
|
|
21574
|
+
buildSvelteVendor: () => buildSvelteVendor,
|
|
21575
|
+
computeSvelteVendorPaths: () => computeSvelteVendorPaths
|
|
21580
21576
|
});
|
|
21581
21577
|
import { mkdirSync as mkdirSync11 } from "fs";
|
|
21582
21578
|
import { join as join38 } from "path";
|
|
@@ -23824,12 +23820,12 @@ var stripStringsAndComments = (source) => {
|
|
|
23824
23820
|
// src/dev/dependencyGraph.ts
|
|
23825
23821
|
var exports_dependencyGraph = {};
|
|
23826
23822
|
__export(exports_dependencyGraph, {
|
|
23827
|
-
|
|
23828
|
-
getAffectedFiles: () => getAffectedFiles,
|
|
23829
|
-
extractDependencies: () => extractDependencies,
|
|
23830
|
-
emptyDependencyGraph: () => emptyDependencyGraph,
|
|
23823
|
+
addFileToGraph: () => addFileToGraph,
|
|
23831
23824
|
buildInitialDependencyGraph: () => buildInitialDependencyGraph,
|
|
23832
|
-
|
|
23825
|
+
emptyDependencyGraph: () => emptyDependencyGraph,
|
|
23826
|
+
extractDependencies: () => extractDependencies,
|
|
23827
|
+
getAffectedFiles: () => getAffectedFiles,
|
|
23828
|
+
removeFileFromGraph: () => removeFileFromGraph
|
|
23833
23829
|
});
|
|
23834
23830
|
import { existsSync as existsSync29, readFileSync as readFileSync24 } from "fs";
|
|
23835
23831
|
var {Glob: Glob9 } = globalThis.Bun;
|
|
@@ -24753,12 +24749,12 @@ var init_fileHashTracker = __esm(() => {
|
|
|
24753
24749
|
// src/dev/transformCache.ts
|
|
24754
24750
|
var exports_transformCache = {};
|
|
24755
24751
|
__export(exports_transformCache, {
|
|
24756
|
-
|
|
24757
|
-
invalidateAll: () => invalidateAll,
|
|
24758
|
-
invalidate: () => invalidate,
|
|
24759
|
-
getTransformed: () => getTransformed,
|
|
24752
|
+
findNearestComponent: () => findNearestComponent,
|
|
24760
24753
|
getInvalidationVersion: () => getInvalidationVersion,
|
|
24761
|
-
|
|
24754
|
+
getTransformed: () => getTransformed,
|
|
24755
|
+
invalidate: () => invalidate,
|
|
24756
|
+
invalidateAll: () => invalidateAll,
|
|
24757
|
+
setTransformed: () => setTransformed
|
|
24762
24758
|
});
|
|
24763
24759
|
var cache, importers, getTransformed = (filePath) => cache.get(filePath)?.content, setTransformed = (filePath, content, mtime, imports) => {
|
|
24764
24760
|
const resolvedImports = imports ?? [];
|
|
@@ -25059,9 +25055,9 @@ var init_inlinePageCss = __esm(() => {
|
|
|
25059
25055
|
// src/dev/angular/resolveOwningComponents.ts
|
|
25060
25056
|
var exports_resolveOwningComponents = {};
|
|
25061
25057
|
__export(exports_resolveOwningComponents, {
|
|
25062
|
-
|
|
25058
|
+
invalidateResourceIndex: () => invalidateResourceIndex,
|
|
25063
25059
|
resolveDescendantsOfParent: () => resolveDescendantsOfParent,
|
|
25064
|
-
|
|
25060
|
+
resolveOwningComponents: () => resolveOwningComponents
|
|
25065
25061
|
});
|
|
25066
25062
|
import { readdirSync as readdirSync8, readFileSync as readFileSync28, statSync as statSync5 } from "fs";
|
|
25067
25063
|
import { dirname as dirname26, extname as extname12, join as join42, resolve as resolve38 } from "path";
|
|
@@ -25357,10 +25353,10 @@ var isValidHMRClientMessage = (data) => {
|
|
|
25357
25353
|
// src/dev/webSocket.ts
|
|
25358
25354
|
var exports_webSocket = {};
|
|
25359
25355
|
__export(exports_webSocket, {
|
|
25360
|
-
|
|
25361
|
-
handleClientDisconnect: () => handleClientDisconnect,
|
|
25356
|
+
broadcastToClients: () => broadcastToClients,
|
|
25362
25357
|
handleClientConnect: () => handleClientConnect,
|
|
25363
|
-
|
|
25358
|
+
handleClientDisconnect: () => handleClientDisconnect,
|
|
25359
|
+
handleHMRMessage: () => handleHMRMessage
|
|
25364
25360
|
});
|
|
25365
25361
|
var MAX_RETAINED_HMR_UPDATES = 100, normalizedHmrTarget = (value) => {
|
|
25366
25362
|
if (value === "capacitor-android")
|
|
@@ -25545,10 +25541,10 @@ var init_webSocket = __esm(() => {
|
|
|
25545
25541
|
// src/utils/loadConfig.ts
|
|
25546
25542
|
var exports_loadConfig = {};
|
|
25547
25543
|
__export(exports_loadConfig, {
|
|
25548
|
-
|
|
25549
|
-
loadConfig: () => loadConfig,
|
|
25544
|
+
getWorkspaceServices: () => getWorkspaceServices,
|
|
25550
25545
|
isWorkspaceConfig: () => isWorkspaceConfig,
|
|
25551
|
-
|
|
25546
|
+
loadConfig: () => loadConfig,
|
|
25547
|
+
loadRawConfig: () => loadRawConfig
|
|
25552
25548
|
});
|
|
25553
25549
|
import { resolve as resolve39 } from "path";
|
|
25554
25550
|
var RESERVED_TOP_LEVEL_KEYS, isObject2 = (value) => typeof value === "object" && value !== null, isCommandService = (service) => service.kind === "command" || Array.isArray(service.command), isServiceCandidate = (value) => isObject2(value) && (typeof value.entry === "string" || Array.isArray(value.command)), isWorkspaceConfig = (config) => {
|
|
@@ -25654,14 +25650,14 @@ var init_loadConfig = __esm(() => {
|
|
|
25654
25650
|
// src/dev/moduleServer.ts
|
|
25655
25651
|
var exports_moduleServer = {};
|
|
25656
25652
|
__export(exports_moduleServer, {
|
|
25657
|
-
|
|
25658
|
-
warmCompilers: () => warmCompilers,
|
|
25659
|
-
warmCache: () => warmCache,
|
|
25660
|
-
setGlobalModuleServer: () => setGlobalModuleServer,
|
|
25661
|
-
isReactFastRefreshSupported: () => isReactFastRefreshSupported,
|
|
25662
|
-
invalidateModule: () => invalidateModule,
|
|
25653
|
+
SRC_URL_PREFIX: () => SRC_URL_PREFIX,
|
|
25663
25654
|
createModuleServer: () => createModuleServer,
|
|
25664
|
-
|
|
25655
|
+
invalidateModule: () => invalidateModule,
|
|
25656
|
+
isReactFastRefreshSupported: () => isReactFastRefreshSupported,
|
|
25657
|
+
setGlobalModuleServer: () => setGlobalModuleServer,
|
|
25658
|
+
warmCache: () => warmCache,
|
|
25659
|
+
warmCompilers: () => warmCompilers,
|
|
25660
|
+
warnIfReactFastRefreshUnsupported: () => warnIfReactFastRefreshUnsupported
|
|
25665
25661
|
});
|
|
25666
25662
|
import { existsSync as existsSync32, readFileSync as readFileSync29, realpathSync as realpathSync3, statSync as statSync6 } from "fs";
|
|
25667
25663
|
import { basename as basename16, dirname as dirname27, extname as extname13, join as join43, resolve as resolve40, relative as relative17 } from "path";
|
|
@@ -26570,8 +26566,8 @@ export function __legacyDecorateParamTS(paramIndex, decorator) {
|
|
|
26570
26566
|
// src/build/rewriteImports.ts
|
|
26571
26567
|
var exports_rewriteImports = {};
|
|
26572
26568
|
__export(exports_rewriteImports, {
|
|
26573
|
-
|
|
26574
|
-
|
|
26569
|
+
rewriteImports: () => rewriteImports2,
|
|
26570
|
+
rewriteVendorDirectories: () => rewriteVendorDirectories2
|
|
26575
26571
|
});
|
|
26576
26572
|
var rewriteImports2 = async (outputPaths, vendorPaths) => {
|
|
26577
26573
|
const jsFiles = outputPaths.filter((path) => path.endsWith(".js"));
|
|
@@ -26610,8 +26606,8 @@ var init_rewriteImports = __esm(() => {
|
|
|
26610
26606
|
// src/dev/angular/hmrCompiler.ts
|
|
26611
26607
|
var exports_hmrCompiler = {};
|
|
26612
26608
|
__export(exports_hmrCompiler, {
|
|
26613
|
-
|
|
26614
|
-
|
|
26609
|
+
encodeHmrComponentId: () => encodeHmrComponentId,
|
|
26610
|
+
getApplyMetadataModule: () => getApplyMetadataModule
|
|
26615
26611
|
});
|
|
26616
26612
|
import { dirname as dirname28, relative as relative18, resolve as resolve41 } from "path";
|
|
26617
26613
|
import { performance as performance2 } from "perf_hooks";
|
|
@@ -26819,8 +26815,8 @@ var init_pageHandler = __esm(() => {
|
|
|
26819
26815
|
// src/ember/index.ts
|
|
26820
26816
|
var exports_ember = {};
|
|
26821
26817
|
__export(exports_ember, {
|
|
26822
|
-
|
|
26823
|
-
|
|
26818
|
+
handleEmberPageRequest: () => handleEmberPageRequest,
|
|
26819
|
+
invalidateEmberSsrCache: () => invalidateEmberSsrCache
|
|
26824
26820
|
});
|
|
26825
26821
|
var init_ember = __esm(() => {
|
|
26826
26822
|
init_pageHandler();
|
|
@@ -29597,8 +29593,8 @@ var init_startupTimings = __esm(() => {
|
|
|
29597
29593
|
// src/build/buildDepVendor.ts
|
|
29598
29594
|
var exports_buildDepVendor = {};
|
|
29599
29595
|
__export(exports_buildDepVendor, {
|
|
29600
|
-
|
|
29601
|
-
|
|
29596
|
+
buildDepVendor: () => buildDepVendor,
|
|
29597
|
+
computeDepVendorPaths: () => computeDepVendorPaths
|
|
29602
29598
|
});
|
|
29603
29599
|
import { mkdirSync as mkdirSync14 } from "fs";
|
|
29604
29600
|
import { isBuiltin } from "module";
|
|
@@ -29922,9 +29918,9 @@ var init_buildDepVendor = __esm(() => {
|
|
|
29922
29918
|
// src/core/devBuild.ts
|
|
29923
29919
|
var exports_devBuild = {};
|
|
29924
29920
|
__export(exports_devBuild, {
|
|
29925
|
-
|
|
29921
|
+
applyConfigChanges: () => applyConfigChanges,
|
|
29926
29922
|
collectDepVendorSourceDirs: () => collectDepVendorSourceDirs,
|
|
29927
|
-
|
|
29923
|
+
devBuild: () => devBuild
|
|
29928
29924
|
});
|
|
29929
29925
|
import { readdir as readdir5 } from "fs/promises";
|
|
29930
29926
|
import { statSync as statSync7 } from "fs";
|
|
@@ -30382,9 +30378,9 @@ var init_devBuild = __esm(() => {
|
|
|
30382
30378
|
init_build();
|
|
30383
30379
|
init_devBuild();
|
|
30384
30380
|
export {
|
|
30385
|
-
|
|
30386
|
-
|
|
30381
|
+
build,
|
|
30382
|
+
devBuild
|
|
30387
30383
|
};
|
|
30388
30384
|
|
|
30389
|
-
//# debugId=
|
|
30385
|
+
//# debugId=79D2A9991FE4E5A664756E2164756E21
|
|
30390
30386
|
//# sourceMappingURL=build.js.map
|