@ryanatkn/gro 0.117.0 → 0.118.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/README.md +31 -15
- package/dist/changeset.task.js +1 -1
- package/dist/clean_fs.js +2 -1
- package/dist/cli.js +1 -1
- package/dist/config.js +3 -2
- package/dist/deploy.task.js +5 -4
- package/dist/docs/gen.md +16 -0
- package/dist/docs/tasks.gen.md.js +2 -3
- package/dist/esbuild_plugin_external_worker.js +1 -2
- package/dist/esbuild_plugin_svelte.js +1 -2
- package/dist/esbuild_plugin_sveltekit_shim_alias.js +1 -2
- package/dist/format_directory.js +3 -2
- package/dist/gen.d.ts +5 -0
- package/dist/gen.task.js +2 -2
- package/dist/gro.config.default.js +3 -2
- package/dist/gro_helpers.js +18 -17
- package/dist/gro_plugin_server.js +9 -5
- package/dist/gro_plugin_sveltekit_app.d.ts +0 -1
- package/dist/gro_plugin_sveltekit_app.js +2 -4
- package/dist/gro_plugin_sveltekit_library.d.ts +0 -2
- package/dist/gro_plugin_sveltekit_library.js +1 -7
- package/dist/input_path.d.ts +1 -1
- package/dist/input_path.js +1 -1
- package/dist/input_path.test.js +3 -3
- package/dist/invoke_task.js +9 -10
- package/dist/lint.task.js +1 -1
- package/dist/loader.js +11 -4
- package/dist/module.d.ts +1 -1
- package/dist/module.js +2 -2
- package/dist/modules.test.js +2 -2
- package/dist/package.d.ts +41 -0
- package/dist/package.js +57 -31
- package/dist/package_json.d.ts +5 -0
- package/dist/package_json.js +7 -2
- package/dist/package_meta.d.ts +1 -2
- package/dist/path_constants.d.ts +20 -0
- package/dist/path_constants.js +27 -0
- package/dist/paths.d.ts +2 -26
- package/dist/paths.js +10 -33
- package/dist/publish.task.js +1 -1
- package/dist/register.d.ts +1 -0
- package/dist/register.js +2 -0
- package/dist/release.task.js +1 -2
- package/dist/resolve_node_specifier.js +2 -1
- package/dist/run_gen.d.ts +2 -1
- package/dist/run_gen.js +2 -2
- package/dist/run_gen.test.js +3 -2
- package/dist/sveltekit_config.d.ts +1 -1
- package/dist/sveltekit_config.js +9 -5
- package/dist/sveltekit_config_global.d.ts +4 -0
- package/dist/sveltekit_config_global.js +5 -0
- package/dist/sveltekit_helpers.d.ts +4 -0
- package/dist/sveltekit_helpers.js +12 -0
- package/dist/sync.task.js +4 -1
- package/dist/task.d.ts +1 -1
- package/dist/task.js +11 -7
- package/dist/task.test.js +9 -13
- package/dist/task_logging.d.ts +2 -2
- package/dist/task_logging.js +4 -4
- package/dist/task_module.d.ts +3 -3
- package/dist/task_module.js +6 -6
- package/dist/task_module.test.js +4 -7
- package/package.json +18 -2
package/dist/sveltekit_config.js
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { join } from 'node:path';
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { SVELTEKIT_CONFIG_FILENAME } from './path_constants.js';
|
|
3
|
+
/*
|
|
4
|
+
|
|
5
|
+
This module is intended to have minimal dependencies to avoid over-imports in the CLI.
|
|
6
|
+
|
|
7
|
+
*/
|
|
4
8
|
/**
|
|
5
9
|
* Loads a SvelteKit config at `dir`.
|
|
6
|
-
* @returns
|
|
10
|
+
* @returns `null` if no config is found
|
|
7
11
|
*/
|
|
8
|
-
export const load_sveltekit_config = async (dir = cwd()) => {
|
|
12
|
+
export const load_sveltekit_config = async (dir = process.cwd()) => {
|
|
9
13
|
try {
|
|
10
14
|
return (await import(join(dir, SVELTEKIT_CONFIG_FILENAME))).default;
|
|
11
15
|
}
|
|
@@ -19,7 +23,7 @@ export const load_sveltekit_config = async (dir = cwd()) => {
|
|
|
19
23
|
* as a convenience wrapper around `load_sveltekit_config`.
|
|
20
24
|
* Needed because SvelteKit doesn't expose its config resolver.
|
|
21
25
|
*/
|
|
22
|
-
export const init_sveltekit_config = async (dir_or_config = cwd()) => {
|
|
26
|
+
export const init_sveltekit_config = async (dir_or_config = process.cwd()) => {
|
|
23
27
|
const sveltekit_config = typeof dir_or_config === 'string' ? await load_sveltekit_config(dir_or_config) : dir_or_config;
|
|
24
28
|
const kit = sveltekit_config?.kit;
|
|
25
29
|
const alias = kit?.alias;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { init_sveltekit_config } from './sveltekit_config.js';
|
|
2
|
+
/**
|
|
3
|
+
* The parsed SvelteKit config for the cwd, cached globally at the module level.
|
|
4
|
+
*/
|
|
5
|
+
export const sveltekit_config_global = await init_sveltekit_config(); // always load it to keep things simple ahead
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Package_Json } from './package_json.js';
|
|
2
|
+
import type { Parsed_Sveltekit_Config } from './sveltekit_config.js';
|
|
3
|
+
export declare const has_sveltekit_app: () => Promise<boolean>;
|
|
4
|
+
export declare const has_sveltekit_library: (package_json?: Package_Json, sveltekit_config?: Parsed_Sveltekit_Config) => Promise<boolean>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Package_Json, load_package_json } from './package_json.js';
|
|
2
|
+
import { exists } from './fs.js';
|
|
3
|
+
import { sveltekit_config_global } from './sveltekit_config_global.js';
|
|
4
|
+
import { SVELTEKIT_CONFIG_FILENAME } from './path_constants.js';
|
|
5
|
+
export const has_sveltekit_app = () => exists(SVELTEKIT_CONFIG_FILENAME);
|
|
6
|
+
export const has_sveltekit_library = async (package_json, sveltekit_config = sveltekit_config_global) => {
|
|
7
|
+
if (!(await has_sveltekit_app()) || !(await exists(sveltekit_config.lib_path))) {
|
|
8
|
+
return false;
|
|
9
|
+
}
|
|
10
|
+
const p = package_json ?? (await load_package_json());
|
|
11
|
+
return !!p.devDependencies?.['@sveltejs/package'] || !!p.dependencies?.['@sveltejs/package'];
|
|
12
|
+
};
|
package/dist/sync.task.js
CHANGED
|
@@ -20,7 +20,10 @@ export const task = {
|
|
|
20
20
|
run: async ({ args, invoke_task, config, log }) => {
|
|
21
21
|
const { sveltekit, package_json, gen, install } = args;
|
|
22
22
|
if (install) {
|
|
23
|
-
await spawn('npm', ['i']);
|
|
23
|
+
const result = await spawn('npm', ['i']);
|
|
24
|
+
if (!result.ok) {
|
|
25
|
+
throw new Task_Error('failed npm install');
|
|
26
|
+
}
|
|
24
27
|
}
|
|
25
28
|
if (sveltekit) {
|
|
26
29
|
await sveltekit_sync();
|
package/dist/task.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export interface Task_Context<T_Args = object> {
|
|
|
19
19
|
export declare const TASK_FILE_SUFFIX_TS = ".task.ts";
|
|
20
20
|
export declare const TASK_FILE_SUFFIX_JS = ".task.js";
|
|
21
21
|
export declare const is_task_path: (path: string) => boolean;
|
|
22
|
-
export declare const to_task_name: (id: Flavored<string, "Source_Id"
|
|
22
|
+
export declare const to_task_name: (id: Flavored<string, "Source_Id">, task_root_paths: string[]) => string;
|
|
23
23
|
/**
|
|
24
24
|
* This is used by tasks to signal a known failure.
|
|
25
25
|
* It's useful for cleaning up logging because
|
package/dist/task.js
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
import { strip_end } from '@ryanatkn/belt/string.js';
|
|
2
|
-
import { import_id_to_lib_path } from './paths.js';
|
|
1
|
+
import { strip_end, strip_start } from '@ryanatkn/belt/string.js';
|
|
3
2
|
export const TASK_FILE_SUFFIX_TS = '.task.ts';
|
|
4
3
|
export const TASK_FILE_SUFFIX_JS = '.task.js';
|
|
5
4
|
export const is_task_path = (path) => path.endsWith(TASK_FILE_SUFFIX_TS) || path.endsWith(TASK_FILE_SUFFIX_JS);
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const
|
|
10
|
-
|
|
5
|
+
export const to_task_name = (id, task_root_paths) => {
|
|
6
|
+
let base_path = id;
|
|
7
|
+
// If the id is in any of the task root paths, use the first match and strip it.
|
|
8
|
+
for (const task_root_path of task_root_paths) {
|
|
9
|
+
if (id.startsWith(task_root_path)) {
|
|
10
|
+
base_path = strip_start(strip_start(id, task_root_path), '/');
|
|
11
|
+
break;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
return strip_end(strip_end(base_path, TASK_FILE_SUFFIX_TS), TASK_FILE_SUFFIX_JS);
|
|
11
15
|
};
|
|
12
16
|
/**
|
|
13
17
|
* This is used by tasks to signal a known failure.
|
package/dist/task.test.js
CHANGED
|
@@ -1,22 +1,18 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { test } from 'uvu';
|
|
2
2
|
import * as assert from 'uvu/assert';
|
|
3
3
|
import { is_task_path, to_task_name } from './task.js';
|
|
4
|
-
|
|
5
|
-
const test__is_task_path = suite('is_task_path');
|
|
6
|
-
test__is_task_path('basic behavior', () => {
|
|
4
|
+
test('is_task_path basic behavior', () => {
|
|
7
5
|
assert.ok(is_task_path('foo.task.ts'));
|
|
8
6
|
assert.ok(is_task_path('foo.task.js'));
|
|
9
7
|
assert.ok(!is_task_path('foo.ts'));
|
|
10
8
|
assert.ok(is_task_path('bar/baz/foo.task.ts'));
|
|
11
9
|
assert.ok(!is_task_path('bar/baz/foo.ts'));
|
|
12
10
|
});
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
assert.is(to_task_name('foo.task.ts'), 'foo');
|
|
19
|
-
assert.is(to_task_name('bar/baz/foo.task.ts'), 'bar/baz/foo');
|
|
11
|
+
test('to_task_name basic behavior', () => {
|
|
12
|
+
assert.is(to_task_name('foo.task.ts', []), 'foo');
|
|
13
|
+
assert.is(to_task_name('bar/baz/foo.task.ts', []), 'bar/baz/foo');
|
|
14
|
+
assert.is(to_task_name('a/b/c/foo.task.ts', ['a/b/c', 'a']), 'foo');
|
|
15
|
+
assert.is(to_task_name('a/b/c/foo.task.ts', ['a']), 'b/c/foo');
|
|
16
|
+
assert.is(to_task_name('a/b/c/foo.task.ts', ['a/b', 'a']), 'c/foo');
|
|
20
17
|
});
|
|
21
|
-
|
|
22
|
-
/* test__to_task_name */
|
|
18
|
+
test.run();
|
package/dist/task_logging.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { type Find_Modules_Result } from './modules.js';
|
|
|
2
2
|
import { type Task_Module_Meta } from './task_module.js';
|
|
3
3
|
import { type Input_Path } from './input_path.js';
|
|
4
4
|
import { type Source_Id } from './paths.js';
|
|
5
|
-
export declare const log_tasks: (log: Logger, dir_label: string, source_ids_by_input_path: Map<Input_Path, Source_Id[]>, log_intro?: boolean) => Promise<void>;
|
|
6
|
-
export declare const log_gro_package_tasks: (input_path: Flavored<string, "Input_Path">, log: Logger) => Promise<Find_Modules_Result>;
|
|
5
|
+
export declare const log_tasks: (log: Logger, dir_label: string, source_ids_by_input_path: Map<Input_Path, Source_Id[]>, task_root_paths: string[], log_intro?: boolean) => Promise<void>;
|
|
6
|
+
export declare const log_gro_package_tasks: (input_path: Flavored<string, "Input_Path">, task_root_paths: string[], log: Logger) => Promise<Find_Modules_Result>;
|
|
7
7
|
export declare const log_error_reasons: (log: Logger, reasons: string[]) => void;
|
|
8
8
|
export declare const log_task_help: (log: Logger, meta: Task_Module_Meta) => void;
|
package/dist/task_logging.js
CHANGED
|
@@ -8,11 +8,11 @@ import { to_gro_input_path } from './input_path.js';
|
|
|
8
8
|
import { print_path_or_gro_path } from './paths.js';
|
|
9
9
|
import { is_task_path } from './task.js';
|
|
10
10
|
import { search_fs } from './search_fs.js';
|
|
11
|
-
export const log_tasks = async (log, dir_label, source_ids_by_input_path, log_intro = true) => {
|
|
11
|
+
export const log_tasks = async (log, dir_label, source_ids_by_input_path, task_root_paths, log_intro = true) => {
|
|
12
12
|
const source_ids = Array.from(source_ids_by_input_path.values()).flat();
|
|
13
13
|
if (source_ids.length) {
|
|
14
14
|
// Load all of the tasks so we can log their summary, and args for the `--help` flag.
|
|
15
|
-
const load_modules_result = await load_modules(source_ids_by_input_path, load_task_module);
|
|
15
|
+
const load_modules_result = await load_modules(source_ids_by_input_path, (id) => load_task_module(id, task_root_paths));
|
|
16
16
|
if (!load_modules_result.ok) {
|
|
17
17
|
log_error_reasons(log, load_modules_result.reasons);
|
|
18
18
|
process.exit(1);
|
|
@@ -33,13 +33,13 @@ export const log_tasks = async (log, dir_label, source_ids_by_input_path, log_in
|
|
|
33
33
|
log.info(`No tasks found in ${dir_label}.`);
|
|
34
34
|
}
|
|
35
35
|
};
|
|
36
|
-
export const log_gro_package_tasks = async (input_path, log) => {
|
|
36
|
+
export const log_gro_package_tasks = async (input_path, task_root_paths, log) => {
|
|
37
37
|
const gro_dir_input_path = to_gro_input_path(input_path);
|
|
38
38
|
const gro_dir_find_modules_result = await find_modules([gro_dir_input_path], (id) => search_fs(id, { filter: (path) => is_task_path(path) }));
|
|
39
39
|
if (gro_dir_find_modules_result.ok) {
|
|
40
40
|
const gro_path_data = gro_dir_find_modules_result.source_id_path_data_by_input_path.get(gro_dir_input_path);
|
|
41
41
|
// Log the Gro matches.
|
|
42
|
-
await log_tasks(log, print_path_or_gro_path(gro_path_data.id), gro_dir_find_modules_result.source_ids_by_input_path);
|
|
42
|
+
await log_tasks(log, print_path_or_gro_path(gro_path_data.id), gro_dir_find_modules_result.source_ids_by_input_path, task_root_paths);
|
|
43
43
|
}
|
|
44
44
|
return gro_dir_find_modules_result;
|
|
45
45
|
};
|
package/dist/task_module.d.ts
CHANGED
|
@@ -8,8 +8,8 @@ export interface Task_Module_Meta extends Module_Meta<Task_Module> {
|
|
|
8
8
|
name: string;
|
|
9
9
|
}
|
|
10
10
|
export declare const validate_task_module: (mod: Record<string, any>) => mod is Task_Module;
|
|
11
|
-
export declare const load_task_module: (id: string) => Promise<Load_Module_Result<Task_Module_Meta>>;
|
|
12
|
-
export declare const find_task_modules: (input_paths: Input_Path[],
|
|
13
|
-
export declare const load_task_modules: (input_paths: Input_Path[],
|
|
11
|
+
export declare const load_task_module: (id: string, task_root_paths: string[]) => Promise<Load_Module_Result<Task_Module_Meta>>;
|
|
12
|
+
export declare const find_task_modules: (input_paths: Input_Path[], task_root_paths: string[]) => Promise<ReturnType<typeof find_modules>>;
|
|
13
|
+
export declare const load_task_modules: (input_paths: Input_Path[], task_root_paths: string[]) => Promise<ReturnType<typeof load_modules<Task_Module, Task_Module_Meta>> | ({
|
|
14
14
|
ok: false;
|
|
15
15
|
} & Find_Modules_Failure)>;
|
package/dist/task_module.js
CHANGED
|
@@ -3,16 +3,16 @@ import { to_task_name, is_task_path, TASK_FILE_SUFFIX_TS, TASK_FILE_SUFFIX_JS, }
|
|
|
3
3
|
import { Input_Path, get_possible_source_ids } from './input_path.js';
|
|
4
4
|
import { search_fs } from './search_fs.js';
|
|
5
5
|
export const validate_task_module = (mod) => !!mod.task && typeof mod.task.run === 'function';
|
|
6
|
-
export const load_task_module = async (id) => {
|
|
6
|
+
export const load_task_module = async (id, task_root_paths) => {
|
|
7
7
|
const result = await load_module(id, validate_task_module);
|
|
8
8
|
if (!result.ok)
|
|
9
9
|
return result;
|
|
10
|
-
return { ...result, mod: { ...result.mod, name: to_task_name(id) } }; // TODO this task name needs to use task root paths or cwd
|
|
10
|
+
return { ...result, mod: { ...result.mod, name: to_task_name(id, task_root_paths) } }; // TODO this task name needs to use task root paths or cwd
|
|
11
11
|
};
|
|
12
|
-
export const find_task_modules = async (input_paths,
|
|
13
|
-
export const load_task_modules = async (input_paths,
|
|
14
|
-
const find_modules_result = await find_task_modules(input_paths,
|
|
12
|
+
export const find_task_modules = async (input_paths, task_root_paths) => find_modules(input_paths, (id) => search_fs(id, { filter: (path) => is_task_path(path) }), (input_path) => get_possible_source_ids(input_path, [TASK_FILE_SUFFIX_TS, TASK_FILE_SUFFIX_JS], task_root_paths));
|
|
13
|
+
export const load_task_modules = async (input_paths, task_root_paths) => {
|
|
14
|
+
const find_modules_result = await find_task_modules(input_paths, task_root_paths);
|
|
15
15
|
if (!find_modules_result.ok)
|
|
16
16
|
return find_modules_result;
|
|
17
|
-
return load_modules(find_modules_result.source_ids_by_input_path, load_task_module);
|
|
17
|
+
return load_modules(find_modules_result.source_ids_by_input_path, (id) => load_task_module(id, task_root_paths));
|
|
18
18
|
};
|
package/dist/task_module.test.js
CHANGED
|
@@ -21,7 +21,7 @@ const test__load_task_module = suite('load_task_module');
|
|
|
21
21
|
test__load_task_module('basic behavior', async () => {
|
|
22
22
|
const name = 'fixtures/test_task_module.task_fixture.js';
|
|
23
23
|
const id = resolve('src/' + name);
|
|
24
|
-
const result = await load_task_module(id);
|
|
24
|
+
const result = await load_task_module(id, []);
|
|
25
25
|
assert.ok(result.ok);
|
|
26
26
|
assert.is(result.mod.id, id);
|
|
27
27
|
assert.is(result.mod.id, id);
|
|
@@ -30,7 +30,7 @@ test__load_task_module('basic behavior', async () => {
|
|
|
30
30
|
});
|
|
31
31
|
test__load_task_module('invalid module', async () => {
|
|
32
32
|
const id = resolve('src/fixtures/test_invalid_task_module.js');
|
|
33
|
-
const result = await load_task_module(id);
|
|
33
|
+
const result = await load_task_module(id, []);
|
|
34
34
|
assert.ok(!result.ok);
|
|
35
35
|
if (result.type === 'invalid') {
|
|
36
36
|
assert.is(result.id, id);
|
|
@@ -43,7 +43,7 @@ test__load_task_module('invalid module', async () => {
|
|
|
43
43
|
});
|
|
44
44
|
test__load_task_module('failing module', async () => {
|
|
45
45
|
const id = resolve('src/fixtures/test_failing_task_module.js');
|
|
46
|
-
const result = await load_task_module(id);
|
|
46
|
+
const result = await load_task_module(id, []);
|
|
47
47
|
assert.ok(!result.ok);
|
|
48
48
|
if (result.type === 'importFailed') {
|
|
49
49
|
assert.is(result.id, id);
|
|
@@ -58,10 +58,7 @@ test__load_task_module.run();
|
|
|
58
58
|
/* test__load_task_modules */
|
|
59
59
|
const test__load_task_modules = suite('load_task_modules');
|
|
60
60
|
test__load_task_modules('basic behavior', async () => {
|
|
61
|
-
const result = await load_task_modules([
|
|
62
|
-
resolve('src/lib/test'),
|
|
63
|
-
resolve('src/lib/test.task.ts'),
|
|
64
|
-
]);
|
|
61
|
+
const result = await load_task_modules([resolve('src/lib/test'), resolve('src/lib/test.task.ts')], [resolve('src/lib')]);
|
|
65
62
|
assert.ok(result.ok);
|
|
66
63
|
assert.is(result.modules.length, 1);
|
|
67
64
|
assert.is(result.modules[0].mod, actual_test_task_module);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ryanatkn/gro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.118.0",
|
|
4
4
|
"description": "task runner and toolkit extending SvelteKit",
|
|
5
5
|
"motto": "generate, run, optimize",
|
|
6
6
|
"icon": "🌰",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"@ryanatkn/fuz": "^0.102.1",
|
|
70
70
|
"@ryanatkn/moss": "^0.4.0",
|
|
71
71
|
"@sveltejs/adapter-static": "^3.0.2",
|
|
72
|
-
"@sveltejs/kit": "^2.5.
|
|
72
|
+
"@sveltejs/kit": "^2.5.15",
|
|
73
73
|
"@sveltejs/package": "^2.3.2",
|
|
74
74
|
"@sveltejs/vite-plugin-svelte": "^3.1.1",
|
|
75
75
|
"@types/fs-extra": "^11.0.4",
|
|
@@ -306,6 +306,10 @@
|
|
|
306
306
|
"default": "./dist/package.js",
|
|
307
307
|
"types": "./dist/package.d.ts"
|
|
308
308
|
},
|
|
309
|
+
"./path_constants.js": {
|
|
310
|
+
"default": "./dist/path_constants.js",
|
|
311
|
+
"types": "./dist/path_constants.d.ts"
|
|
312
|
+
},
|
|
309
313
|
"./path.js": {
|
|
310
314
|
"default": "./dist/path.js",
|
|
311
315
|
"types": "./dist/path.d.ts"
|
|
@@ -322,6 +326,10 @@
|
|
|
322
326
|
"default": "./dist/publish.task.js",
|
|
323
327
|
"types": "./dist/publish.task.d.ts"
|
|
324
328
|
},
|
|
329
|
+
"./register.js": {
|
|
330
|
+
"default": "./dist/register.js",
|
|
331
|
+
"types": "./dist/register.d.ts"
|
|
332
|
+
},
|
|
325
333
|
"./release.task.js": {
|
|
326
334
|
"default": "./dist/release.task.js",
|
|
327
335
|
"types": "./dist/release.task.d.ts"
|
|
@@ -358,10 +366,18 @@
|
|
|
358
366
|
"default": "./dist/svelte_helpers.js",
|
|
359
367
|
"types": "./dist/svelte_helpers.d.ts"
|
|
360
368
|
},
|
|
369
|
+
"./sveltekit_config_global.js": {
|
|
370
|
+
"default": "./dist/sveltekit_config_global.js",
|
|
371
|
+
"types": "./dist/sveltekit_config_global.d.ts"
|
|
372
|
+
},
|
|
361
373
|
"./sveltekit_config.js": {
|
|
362
374
|
"default": "./dist/sveltekit_config.js",
|
|
363
375
|
"types": "./dist/sveltekit_config.d.ts"
|
|
364
376
|
},
|
|
377
|
+
"./sveltekit_helpers.js": {
|
|
378
|
+
"default": "./dist/sveltekit_helpers.js",
|
|
379
|
+
"types": "./dist/sveltekit_helpers.d.ts"
|
|
380
|
+
},
|
|
365
381
|
"./sveltekit_shim_app_environment.js": {
|
|
366
382
|
"default": "./dist/sveltekit_shim_app_environment.js",
|
|
367
383
|
"types": "./dist/sveltekit_shim_app_environment.d.ts"
|