@sveltejs/kit 2.62.0 → 2.63.0
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/package.json +12 -1
- package/src/cli.js +32 -6
- package/src/core/adapt/builder.js +26 -5
- package/src/core/adapt/index.js +5 -2
- package/src/core/config/index.js +7 -5
- package/src/core/config/options.js +1 -0
- package/src/core/env.js +313 -8
- package/src/core/postbuild/analyse.js +2 -1
- package/src/core/postbuild/prerender.js +2 -1
- package/src/core/sync/sync.js +16 -0
- package/src/core/sync/write_ambient.js +12 -6
- package/src/core/sync/write_env.js +32 -0
- package/src/core/sync/write_root.js +1 -1
- package/src/core/sync/write_server.js +3 -2
- package/src/core/sync/write_tsconfig.js +1 -0
- package/src/exports/hooks/index.js +13 -0
- package/src/exports/internal/env.js +71 -0
- package/src/exports/internal/types.d.ts +3 -0
- package/src/exports/public.d.ts +40 -0
- package/src/exports/vite/build/build_service_worker.js +20 -4
- package/src/exports/vite/dev/index.js +2 -2
- package/src/exports/vite/index.js +127 -29
- package/src/exports/vite/module_ids.js +10 -1
- package/src/exports/vite/utils.js +6 -0
- package/src/runtime/app/env/index.js +2 -0
- package/src/runtime/app/env/internal.js +11 -0
- package/src/runtime/app/env/private.js +1 -0
- package/src/runtime/app/env/public/client.js +7 -0
- package/src/runtime/app/env/public/index.js +1 -0
- package/src/runtime/app/env/public/server.js +7 -0
- package/src/runtime/app/env/standard-schema.d.ts +0 -0
- package/src/runtime/app/env/types.d.ts +19 -0
- package/src/runtime/app/environment/index.js +10 -2
- package/src/runtime/app/server/remote/query.js +1 -1
- package/src/runtime/client/remote-functions/prerender.svelte.js +1 -1
- package/src/runtime/client/utils.js +1 -1
- package/src/runtime/server/env_module.js +13 -3
- package/src/runtime/server/index.js +2 -0
- package/src/runtime/server/page/render.js +11 -3
- package/src/runtime/server/respond.js +1 -1
- package/src/types/ambient-private.d.ts +25 -9
- package/src/types/global-private.d.ts +2 -0
- package/src/types/internal.d.ts +1 -0
- package/src/utils/import.js +2 -2
- package/src/version.js +1 -1
- package/types/index.d.ts +70 -1
- package/types/index.d.ts.map +7 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '#app/env/public';
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `true` if the app is running in the browser.
|
|
3
|
+
*/
|
|
4
|
+
export const browser: boolean;
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Whether the dev server is running. This is not guaranteed to correspond to `NODE_ENV` or `MODE`.
|
|
8
|
+
*/
|
|
9
|
+
export const dev: boolean;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* SvelteKit analyses your app during the `build` step by running it. During this process, `building` is `true`. This also applies during prerendering.
|
|
13
|
+
*/
|
|
14
|
+
export const building: boolean;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* The value of `config.kit.version.name`.
|
|
18
|
+
*/
|
|
19
|
+
export const version: string;
|
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
1
|
+
export * from '../env/index.js';
|
|
2
|
+
|
|
3
|
+
if (__SVELTEKIT_EXPERIMENTAL_EXPLICIT_ENVIRONMENT_VARIABLES__) {
|
|
4
|
+
throw new Error(
|
|
5
|
+
'Cannot import `$app/environment` when `experimental.explicitEnvironmentVariables` is enabled. Use `$app/env` instead.'
|
|
6
|
+
);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// force the Vite client to load, so that defines are definitely defined
|
|
10
|
+
import.meta.hot;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/** @import { StandardSchemaV1 } from '@standard-schema/spec' */
|
|
4
4
|
import { get_request_store } from '@sveltejs/kit/internal/server';
|
|
5
5
|
import { create_remote_key, stringify, stringify_remote_arg } from '../../../shared.js';
|
|
6
|
-
import { prerendering } from '
|
|
6
|
+
import { prerendering } from '$app/env/internal';
|
|
7
7
|
import {
|
|
8
8
|
create_validator,
|
|
9
9
|
get_cache,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @import { RemotePrerenderFunction } from '@sveltejs/kit' */
|
|
2
2
|
import { app_dir, base } from '$app/paths/internal/client';
|
|
3
|
-
import { version } from '
|
|
3
|
+
import { version } from '$app/env';
|
|
4
4
|
import * as devalue from 'devalue';
|
|
5
5
|
import { app, prerender_responses } from '../client.js';
|
|
6
6
|
import { get_remote_request_headers, remote_request } from './shared.svelte.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BROWSER, DEV } from 'esm-env';
|
|
2
2
|
import { writable } from 'svelte/store';
|
|
3
3
|
import { assets } from '$app/paths';
|
|
4
|
-
import { version } from '
|
|
4
|
+
import { version } from '$app/env';
|
|
5
5
|
import { noop } from '../../utils/functions.js';
|
|
6
6
|
import { PRELOAD_PRIORITIES } from './constants.js';
|
|
7
7
|
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import * as devalue from 'devalue';
|
|
1
2
|
import { public_env } from '../shared-server.js';
|
|
3
|
+
import { rendered_env } from '__sveltekit/env';
|
|
2
4
|
|
|
3
5
|
/** @type {string} */
|
|
4
|
-
let
|
|
6
|
+
let payload;
|
|
5
7
|
|
|
6
8
|
/** @type {string} */
|
|
7
9
|
let etag;
|
|
@@ -14,7 +16,11 @@ let headers;
|
|
|
14
16
|
* @returns {Response}
|
|
15
17
|
*/
|
|
16
18
|
export function get_public_env(request) {
|
|
17
|
-
|
|
19
|
+
const script = request.url.endsWith('.script.js');
|
|
20
|
+
|
|
21
|
+
const env = __SVELTEKIT_EXPERIMENTAL_EXPLICIT_ENVIRONMENT_VARIABLES__ ? rendered_env : public_env;
|
|
22
|
+
|
|
23
|
+
payload ??= devalue.uneval(env);
|
|
18
24
|
etag ??= `W/${Date.now()}`;
|
|
19
25
|
headers ??= new Headers({
|
|
20
26
|
'content-type': 'application/javascript; charset=utf-8',
|
|
@@ -25,5 +31,9 @@ export function get_public_env(request) {
|
|
|
25
31
|
return new Response(undefined, { status: 304, headers });
|
|
26
32
|
}
|
|
27
33
|
|
|
28
|
-
|
|
34
|
+
if (script) {
|
|
35
|
+
return new Response(`globalThis.__sveltekit_sw={env:${payload}}`, { headers });
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return new Response(`export const env=${payload}`, { headers });
|
|
29
39
|
}
|
|
@@ -8,6 +8,7 @@ import { options, get_hooks } from '__SERVER__/internal.js';
|
|
|
8
8
|
import { filter_env } from '../../utils/env.js';
|
|
9
9
|
import { format_server_error } from './utils.js';
|
|
10
10
|
import { set_read_implementation, set_manifest } from '__sveltekit/server';
|
|
11
|
+
import { set_env } from '__sveltekit/env';
|
|
11
12
|
import { set_app } from './app.js';
|
|
12
13
|
|
|
13
14
|
/** @type {Promise<any>} */
|
|
@@ -62,6 +63,7 @@ export class Server {
|
|
|
62
63
|
|
|
63
64
|
set_private_env(filter_env(env, env_private_prefix, env_public_prefix));
|
|
64
65
|
set_public_env(filter_env(env, env_public_prefix, env_private_prefix));
|
|
66
|
+
set_env(env);
|
|
65
67
|
|
|
66
68
|
if (read) {
|
|
67
69
|
// Wrap the read function to handle MaybePromise<ReadableStream>
|
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
} from '../utils.js';
|
|
24
24
|
import { create_remote_key } from '../../shared.js';
|
|
25
25
|
import { get_status } from '../../../utils/error.js';
|
|
26
|
+
import * as env from '__sveltekit/env';
|
|
26
27
|
|
|
27
28
|
// TODO rename this function/module
|
|
28
29
|
|
|
@@ -404,7 +405,10 @@ export async function render_response({
|
|
|
404
405
|
// import the env.js module so that it evaluates before any user code can evaluate.
|
|
405
406
|
// TODO revert to using top-level await once https://bugs.webkit.org/show_bug.cgi?id=242740 is fixed
|
|
406
407
|
// https://github.com/sveltejs/kit/pull/11601
|
|
407
|
-
const load_env_eagerly =
|
|
408
|
+
const load_env_eagerly =
|
|
409
|
+
(__SVELTEKIT_EXPERIMENTAL_EXPLICIT_ENVIRONMENT_VARIABLES__ ||
|
|
410
|
+
client.uses_env_dynamic_public) &&
|
|
411
|
+
state.prerendering;
|
|
408
412
|
|
|
409
413
|
const properties = [`base: ${base_expression}`];
|
|
410
414
|
|
|
@@ -412,7 +416,9 @@ export async function render_response({
|
|
|
412
416
|
properties.push(`assets: ${s(paths.assets)}`);
|
|
413
417
|
}
|
|
414
418
|
|
|
415
|
-
if (
|
|
419
|
+
if (__SVELTEKIT_EXPERIMENTAL_EXPLICIT_ENVIRONMENT_VARIABLES__) {
|
|
420
|
+
properties.push(`env: ${load_env_eagerly ? 'null' : devalue.uneval(env.rendered_env)}`);
|
|
421
|
+
} else if (client.uses_env_dynamic_public) {
|
|
416
422
|
properties.push(`env: ${load_env_eagerly ? 'null' : s(public_env)}`);
|
|
417
423
|
}
|
|
418
424
|
|
|
@@ -677,7 +683,9 @@ export async function render_response({
|
|
|
677
683
|
body,
|
|
678
684
|
assets,
|
|
679
685
|
nonce: /** @type {string} */ (csp.nonce),
|
|
680
|
-
env:
|
|
686
|
+
env: __SVELTEKIT_EXPERIMENTAL_EXPLICIT_ENVIRONMENT_VARIABLES__
|
|
687
|
+
? env.explicit_public_env
|
|
688
|
+
: public_env
|
|
681
689
|
});
|
|
682
690
|
|
|
683
691
|
// TODO flush chunks as early as we can
|
|
@@ -317,7 +317,7 @@ export async function internal_respond(request, options, manifest, state) {
|
|
|
317
317
|
return resolve_route(resolved_path, new URL(request.url), manifest);
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
if (resolved_path === `/${app_dir}/env.js`) {
|
|
320
|
+
if (resolved_path === `/${app_dir}/env.js` || resolved_path === `/${app_dir}/env.script.js`) {
|
|
321
321
|
return get_public_env(request);
|
|
322
322
|
}
|
|
323
323
|
|
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
/** Internal version of $app/environment */
|
|
2
|
-
declare module '__sveltekit/environment' {
|
|
3
|
-
export const building: boolean;
|
|
4
|
-
export const prerendering: boolean;
|
|
5
|
-
export const version: string;
|
|
6
|
-
export function set_building(): void;
|
|
7
|
-
export function set_prerendering(): void;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
1
|
/** Internal version of $app/paths */
|
|
11
2
|
declare module '__sveltekit/paths' {
|
|
12
3
|
export let base: '' | `/${string}`;
|
|
@@ -27,3 +18,28 @@ declare module '__sveltekit/server' {
|
|
|
27
18
|
export function set_manifest(manifest: SSRManifest): void;
|
|
28
19
|
export function set_read_implementation(fn: (path: string) => ReadableStream): void;
|
|
29
20
|
}
|
|
21
|
+
|
|
22
|
+
declare module '__sveltekit/env' {
|
|
23
|
+
// exported environment variables are defined in env.d.ts
|
|
24
|
+
|
|
25
|
+
/** Populate exported environment variables */
|
|
26
|
+
export function set_env(environment: Record<string, string>): void;
|
|
27
|
+
|
|
28
|
+
/** public env vars */
|
|
29
|
+
export const explicit_public_env: Record<string, any>;
|
|
30
|
+
|
|
31
|
+
/** public env vars that should be inlined when a page is rendered */
|
|
32
|
+
export const rendered_env: Record<string, any>;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
declare module '__sveltekit/env/private' {
|
|
36
|
+
// exported environment variables are defined in env.d.ts
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare module '__sveltekit/env/public/client' {
|
|
40
|
+
// exported environment variables are defined in env.d.ts
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
declare module '__sveltekit/env/public/server' {
|
|
44
|
+
// exported environment variables are defined in env.d.ts
|
|
45
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare global {
|
|
2
2
|
const __SVELTEKIT_ADAPTER_NAME__: string;
|
|
3
3
|
const __SVELTEKIT_APP_DIR__: string;
|
|
4
|
+
const __SVELTEKIT_APP_VERSION__: string;
|
|
4
5
|
const __SVELTEKIT_APP_VERSION_FILE__: string;
|
|
5
6
|
const __SVELTEKIT_APP_VERSION_POLL_INTERVAL__: number;
|
|
6
7
|
/**
|
|
@@ -63,6 +64,7 @@ declare global {
|
|
|
63
64
|
*/
|
|
64
65
|
var __SVELTEKIT_TRACK__: (label: string) => void;
|
|
65
66
|
var __SVELTEKIT_EXPERIMENTAL_USE_TRANSFORM_ERROR__: boolean;
|
|
67
|
+
var __SVELTEKIT_EXPERIMENTAL_EXPLICIT_ENVIRONMENT_VARIABLES__: boolean;
|
|
66
68
|
var Bun: object;
|
|
67
69
|
var Deno: object;
|
|
68
70
|
}
|
package/src/types/internal.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export interface ServerModule {
|
|
|
44
44
|
export interface ServerInternalModule {
|
|
45
45
|
set_assets(path: string): void;
|
|
46
46
|
set_building(): void;
|
|
47
|
+
set_env(environment: Record<string, string>): void;
|
|
47
48
|
set_manifest(manifest: SSRManifest): void;
|
|
48
49
|
set_prerendering(): void;
|
|
49
50
|
set_private_env(environment: Record<string, string>): void;
|
package/src/utils/import.js
CHANGED
|
@@ -45,8 +45,8 @@ function resolve_peer(dependency) {
|
|
|
45
45
|
*/
|
|
46
46
|
export async function import_peer(dependency) {
|
|
47
47
|
try {
|
|
48
|
-
return await import(resolve_peer(dependency));
|
|
48
|
+
return await import(/* @vite-ignore */ resolve_peer(dependency));
|
|
49
49
|
} catch {
|
|
50
|
-
return await import(dependency);
|
|
50
|
+
return await import(/* @vite-ignore */ dependency);
|
|
51
51
|
}
|
|
52
52
|
}
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -450,6 +450,13 @@ declare module '@sveltejs/kit' {
|
|
|
450
450
|
};
|
|
451
451
|
/** Experimental features. Here be dragons. These are not subject to semantic versioning, so breaking changes or removal can happen in any release. */
|
|
452
452
|
experimental?: {
|
|
453
|
+
/**
|
|
454
|
+
* Whether to enable explicit environment variables using `src/env.js` or `src/env.ts`.
|
|
455
|
+
* @since 2.62.0
|
|
456
|
+
* @default false
|
|
457
|
+
*/
|
|
458
|
+
explicitEnvironmentVariables?: boolean;
|
|
459
|
+
|
|
453
460
|
/**
|
|
454
461
|
* Options for enabling server-side [OpenTelemetry](https://opentelemetry.io/) tracing for SvelteKit operations including the [`handle` hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle), [`load` functions](https://svelte.dev/docs/kit/load), [form actions](https://svelte.dev/docs/kit/form-actions), and [remote functions](https://svelte.dev/docs/kit/remote-functions).
|
|
455
462
|
* @default { server: false, serverFile: false }
|
|
@@ -2287,6 +2294,39 @@ declare module '@sveltejs/kit' {
|
|
|
2287
2294
|
export type RemoteLiveQueryFunction<Input, Output, _Validated = Input> = (
|
|
2288
2295
|
arg: undefined extends Input ? Input | void : Input
|
|
2289
2296
|
) => RemoteLiveQuery<Output>;
|
|
2297
|
+
|
|
2298
|
+
/**
|
|
2299
|
+
* [Environment variables](https://svelte.dev/docs/kit/environment-variables) can be configured by exporting
|
|
2300
|
+
* a `variables` object from `src/env.ts`, using [`defineEnvVars`](https://svelte.dev/docs/kit/@sveltejs-kit-hooks#defineEnvVars).
|
|
2301
|
+
*/
|
|
2302
|
+
export interface EnvVarConfig<T> {
|
|
2303
|
+
/**
|
|
2304
|
+
* Whether the environment variable can be accessed by client-side code.
|
|
2305
|
+
* - if `true`, it can be imported from `$app/env/public`
|
|
2306
|
+
* - if `false`, it can be imported from `$app/env/private`, which is a [server-only module](https://svelte.dev/docs/kit/server-only-modules)
|
|
2307
|
+
* @default false
|
|
2308
|
+
*/
|
|
2309
|
+
public?: boolean;
|
|
2310
|
+
/**
|
|
2311
|
+
* Whether the value is determined at build time or when the app runs.
|
|
2312
|
+
* - if `true`, the build time value is inlined into the bundle. This enables optimisations like dead-code elimination
|
|
2313
|
+
* - if `false`, the value is read from the environment when the app starts
|
|
2314
|
+
* @default false
|
|
2315
|
+
*/
|
|
2316
|
+
static?: boolean;
|
|
2317
|
+
/**
|
|
2318
|
+
* A [Standard Schema](https://standardschema.dev/) validator that is applied to the value when the app starts.
|
|
2319
|
+
* The validator can output any value — not necessarily a string — but public, non-static values must be
|
|
2320
|
+
* serializable by [devalue](https://github.com/sveltejs/devalue) so that they can be sent to the browser.
|
|
2321
|
+
*
|
|
2322
|
+
* If omitted, the value must be a non-empty string.
|
|
2323
|
+
*/
|
|
2324
|
+
schema?: StandardSchemaV1<string | undefined, T>;
|
|
2325
|
+
/**
|
|
2326
|
+
* A description of the variable that will be used for inline documentation on hover.
|
|
2327
|
+
*/
|
|
2328
|
+
description?: string;
|
|
2329
|
+
}
|
|
2290
2330
|
interface AdapterEntry {
|
|
2291
2331
|
/**
|
|
2292
2332
|
* A string that uniquely identifies an HTTP service (e.g. serverless function) and is used for deduplication.
|
|
@@ -2931,7 +2971,12 @@ declare module '@sveltejs/kit' {
|
|
|
2931
2971
|
}
|
|
2932
2972
|
|
|
2933
2973
|
declare module '@sveltejs/kit/hooks' {
|
|
2934
|
-
import type { Handle } from '@sveltejs/kit';
|
|
2974
|
+
import type { EnvVarConfig, Handle } from '@sveltejs/kit';
|
|
2975
|
+
/**
|
|
2976
|
+
* Utility for defining [environment variables](https://svelte.dev/docs/kit/environment-variables),
|
|
2977
|
+
* which are made available via `$app/env/public` and `$app/env/private`.
|
|
2978
|
+
* */
|
|
2979
|
+
export function defineEnvVars<T extends Record<string, EnvVarConfig<any>>>(variables: T): T;
|
|
2935
2980
|
/**
|
|
2936
2981
|
* A helper function for sequencing multiple `handle` calls in a middleware-like manner.
|
|
2937
2982
|
* The behavior for the `handle` options is as follows:
|
|
@@ -3048,6 +3093,30 @@ declare module '@sveltejs/kit/vite' {
|
|
|
3048
3093
|
export {};
|
|
3049
3094
|
}
|
|
3050
3095
|
|
|
3096
|
+
declare module '$app/env' {
|
|
3097
|
+
/**
|
|
3098
|
+
* `true` if the app is running in the browser.
|
|
3099
|
+
*/
|
|
3100
|
+
export const browser: boolean;
|
|
3101
|
+
|
|
3102
|
+
/**
|
|
3103
|
+
* Whether the dev server is running. This is not guaranteed to correspond to `NODE_ENV` or `MODE`.
|
|
3104
|
+
*/
|
|
3105
|
+
export const dev: boolean;
|
|
3106
|
+
|
|
3107
|
+
/**
|
|
3108
|
+
* SvelteKit analyses your app during the `build` step by running it. During this process, `building` is `true`. This also applies during prerendering.
|
|
3109
|
+
*/
|
|
3110
|
+
export const building: boolean;
|
|
3111
|
+
|
|
3112
|
+
/**
|
|
3113
|
+
* The value of `config.kit.version.name`.
|
|
3114
|
+
*/
|
|
3115
|
+
export const version: string;
|
|
3116
|
+
|
|
3117
|
+
export {};
|
|
3118
|
+
}
|
|
3119
|
+
|
|
3051
3120
|
declare module '$app/environment' {
|
|
3052
3121
|
/**
|
|
3053
3122
|
* `true` if the app is running in the browser.
|
package/types/index.d.ts.map
CHANGED
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"RemotePrerenderFunction",
|
|
97
97
|
"RemoteQueryFunction",
|
|
98
98
|
"RemoteLiveQueryFunction",
|
|
99
|
+
"EnvVarConfig",
|
|
99
100
|
"AdapterEntry",
|
|
100
101
|
"Csp",
|
|
101
102
|
"CspDirectives",
|
|
@@ -150,6 +151,7 @@
|
|
|
150
151
|
"PageOptions",
|
|
151
152
|
"valid_page_options_array",
|
|
152
153
|
"VERSION",
|
|
154
|
+
"defineEnvVars",
|
|
153
155
|
"sequence",
|
|
154
156
|
"getRequest",
|
|
155
157
|
"setResponse",
|
|
@@ -200,10 +202,12 @@
|
|
|
200
202
|
"../src/exports/index.js",
|
|
201
203
|
"../src/exports/vite/static_analysis/index.js",
|
|
202
204
|
"../src/version.js",
|
|
205
|
+
"../src/exports/hooks/index.js",
|
|
203
206
|
"../src/exports/hooks/sequence.js",
|
|
204
207
|
"../src/exports/node/index.js",
|
|
205
208
|
"../src/exports/node/polyfills.js",
|
|
206
209
|
"../src/exports/vite/index.js",
|
|
210
|
+
"../src/runtime/app/env/types.d.ts",
|
|
207
211
|
"../src/runtime/app/environment/types.d.ts",
|
|
208
212
|
"../src/runtime/app/forms.js",
|
|
209
213
|
"../src/runtime/client/client.js",
|
|
@@ -236,8 +240,10 @@
|
|
|
236
240
|
null,
|
|
237
241
|
null,
|
|
238
242
|
null,
|
|
243
|
+
null,
|
|
244
|
+
null,
|
|
239
245
|
null
|
|
240
246
|
],
|
|
241
|
-
"mappings": ";;;;;;;;MAiCKA,IAAIA;;;;;kBAKQC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCZC,cAAcA;;;;;;aAMdC,cAAcA;;;;;;;;MAQrBC,aAAaA;;;;;OAKJC,YAAYA;;kBAETC,aAAaA;;;;;;MAMzBC,qBAAqBA;;;;;;;;;;;kBAWTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA8IPC,MAAMA;;;;;;;;;;;kBAWNC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4DPC,QAAQA;;;;;;;;kBAQRC,SAASA
|
|
247
|
+
"mappings": "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",
|
|
242
248
|
"ignoreList": []
|
|
243
249
|
}
|