@ryanatkn/gro 0.173.1 → 0.174.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/dist/build.task.d.ts +2 -0
- package/dist/build.task.d.ts.map +1 -1
- package/dist/build.task.js +2 -0
- package/dist/changeset.task.d.ts +4 -1
- package/dist/changeset.task.d.ts.map +1 -1
- package/dist/changeset.task.js +3 -0
- package/dist/check.task.d.ts +2 -0
- package/dist/check.task.d.ts.map +1 -1
- package/dist/check.task.js +2 -0
- package/dist/clean.task.d.ts +3 -1
- package/dist/clean.task.d.ts.map +1 -1
- package/dist/clean.task.js +2 -0
- package/dist/commit.task.d.ts +3 -1
- package/dist/commit.task.d.ts.map +1 -1
- package/dist/commit.task.js +2 -0
- package/dist/deploy.task.d.ts +5 -3
- package/dist/deploy.task.d.ts.map +1 -1
- package/dist/deploy.task.js +2 -0
- package/dist/dev.task.d.ts +2 -0
- package/dist/dev.task.d.ts.map +1 -1
- package/dist/dev.task.js +2 -0
- package/dist/filer.d.ts.map +1 -1
- package/dist/filer.js +13 -3
- package/dist/format.task.d.ts +2 -0
- package/dist/format.task.d.ts.map +1 -1
- package/dist/format.task.js +2 -0
- package/dist/gen.task.d.ts +2 -0
- package/dist/gen.task.d.ts.map +1 -1
- package/dist/gen.task.js +2 -0
- package/dist/gro_config.d.ts +3 -3
- package/dist/gro_config.d.ts.map +1 -1
- package/dist/gro_plugin_server.d.ts +1 -0
- package/dist/gro_plugin_server.d.ts.map +1 -1
- package/dist/gro_plugin_sveltekit_app.d.ts +4 -4
- package/dist/gro_plugin_sveltekit_app.d.ts.map +1 -1
- package/dist/gro_plugin_sveltekit_app.js +4 -4
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/lint.task.d.ts +2 -0
- package/dist/lint.task.d.ts.map +1 -1
- package/dist/lint.task.js +2 -0
- package/dist/loader.d.ts +2 -0
- package/dist/loader.d.ts.map +1 -1
- package/dist/loader.js +2 -0
- package/dist/package_json.d.ts +2 -2
- package/dist/package_json.d.ts.map +1 -1
- package/dist/parse_exports.d.ts +2 -2
- package/dist/parse_exports.d.ts.map +1 -1
- package/dist/parse_exports_context.d.ts.map +1 -1
- package/dist/publish.task.d.ts +8 -2
- package/dist/publish.task.d.ts.map +1 -1
- package/dist/publish.task.js +19 -2
- package/dist/reinstall.task.d.ts +2 -0
- package/dist/reinstall.task.d.ts.map +1 -1
- package/dist/reinstall.task.js +2 -0
- package/dist/release.task.d.ts +2 -0
- package/dist/release.task.d.ts.map +1 -1
- package/dist/release.task.js +2 -0
- package/dist/resolve.task.d.ts +2 -0
- package/dist/resolve.task.d.ts.map +1 -1
- package/dist/resolve.task.js +2 -0
- package/dist/run.task.d.ts +2 -0
- package/dist/run.task.d.ts.map +1 -1
- package/dist/run.task.js +2 -0
- package/dist/src_json.d.ts +5 -5
- package/dist/src_json.d.ts.map +1 -1
- package/dist/src_json.js +14 -15
- package/dist/sync.task.d.ts +2 -0
- package/dist/sync.task.d.ts.map +1 -1
- package/dist/sync.task.js +2 -0
- package/dist/test.task.d.ts +2 -0
- package/dist/test.task.d.ts.map +1 -1
- package/dist/test.task.js +2 -0
- package/dist/typecheck.task.d.ts +2 -0
- package/dist/typecheck.task.d.ts.map +1 -1
- package/dist/typecheck.task.js +2 -0
- package/dist/upgrade.task.d.ts +3 -1
- package/dist/upgrade.task.d.ts.map +1 -1
- package/dist/upgrade.task.js +2 -0
- package/package.json +5 -5
- package/src/lib/build.task.ts +2 -0
- package/src/lib/changeset.task.ts +3 -0
- package/src/lib/check.task.ts +2 -0
- package/src/lib/clean.task.ts +2 -0
- package/src/lib/commit.task.ts +2 -0
- package/src/lib/deploy.task.ts +2 -0
- package/src/lib/dev.task.ts +2 -0
- package/src/lib/filer.ts +14 -4
- package/src/lib/format.task.ts +2 -0
- package/src/lib/gen.task.ts +2 -0
- package/src/lib/gro_config.ts +3 -3
- package/src/lib/gro_plugin_sveltekit_app.ts +10 -6
- package/src/lib/index.ts +4 -0
- package/src/lib/lint.task.ts +2 -0
- package/src/lib/loader.ts +2 -0
- package/src/lib/package_json.ts +2 -2
- package/src/lib/parse_exports.ts +2 -2
- package/src/lib/parse_exports_context.ts +5 -8
- package/src/lib/publish.task.ts +20 -1
- package/src/lib/reinstall.task.ts +2 -0
- package/src/lib/release.task.ts +2 -0
- package/src/lib/resolve.task.ts +2 -0
- package/src/lib/run.task.ts +2 -0
- package/src/lib/src_json.ts +23 -22
- package/src/lib/sync.task.ts +2 -0
- package/src/lib/test.task.ts +2 -0
- package/src/lib/typecheck.task.ts +2 -0
- package/src/lib/upgrade.task.ts +2 -0
- package/dist/package.d.ts +0 -5
- package/dist/package.d.ts.map +0 -1
- package/dist/package.gen.d.ts +0 -8
- package/dist/package.gen.d.ts.map +0 -1
- package/dist/package.gen.js +0 -30
- package/dist/package.js +0 -876
- package/src/lib/package.gen.ts +0 -38
- package/src/lib/package.ts +0 -883
package/src/lib/package.ts
DELETED
|
@@ -1,883 +0,0 @@
|
|
|
1
|
-
// generated by src/lib/package.gen.ts
|
|
2
|
-
|
|
3
|
-
import type {Package_Json} from '@ryanatkn/belt/package_json.js';
|
|
4
|
-
import type {Src_Json} from '@ryanatkn/belt/src_json.js';
|
|
5
|
-
|
|
6
|
-
export const package_json: Package_Json = {
|
|
7
|
-
name: '@ryanatkn/gro',
|
|
8
|
-
version: '0.173.0',
|
|
9
|
-
description: 'task runner and toolkit extending SvelteKit',
|
|
10
|
-
motto: 'generate, run, optimize',
|
|
11
|
-
glyph: '🌰',
|
|
12
|
-
logo: 'logo.svg',
|
|
13
|
-
logo_alt: 'a pixelated green oak acorn with a glint of sun',
|
|
14
|
-
public: true,
|
|
15
|
-
license: 'MIT',
|
|
16
|
-
homepage: 'https://gro.ryanatkn.com/',
|
|
17
|
-
author: {name: 'Ryan Atkinson', email: 'mail@ryanatkn.com', url: 'https://www.ryanatkn.com/'},
|
|
18
|
-
repository: {type: 'git', url: 'git+https://github.com/ryanatkn/gro.git'},
|
|
19
|
-
bugs: 'https://github.com/ryanatkn/gro/issues',
|
|
20
|
-
funding: 'https://www.ryanatkn.com/funding',
|
|
21
|
-
scripts: {
|
|
22
|
-
bootstrap:
|
|
23
|
-
'rm -rf .gro dist && svelte-kit sync && svelte-package && chmod +x ./dist/gro.js && npm link -f',
|
|
24
|
-
start: 'gro dev',
|
|
25
|
-
dev: 'gro dev',
|
|
26
|
-
build: 'gro build',
|
|
27
|
-
check: 'gro check',
|
|
28
|
-
test: 'gro test',
|
|
29
|
-
preview: 'vite preview',
|
|
30
|
-
deploy: 'gro deploy',
|
|
31
|
-
},
|
|
32
|
-
type: 'module',
|
|
33
|
-
engines: {node: '>=22.15'},
|
|
34
|
-
bin: {gro: 'dist/gro.js'},
|
|
35
|
-
keywords: [
|
|
36
|
-
'web',
|
|
37
|
-
'tools',
|
|
38
|
-
'task runner',
|
|
39
|
-
'tasks',
|
|
40
|
-
'codegen',
|
|
41
|
-
'svelte',
|
|
42
|
-
'sveltekit',
|
|
43
|
-
'vite',
|
|
44
|
-
'typescript',
|
|
45
|
-
],
|
|
46
|
-
dependencies: {
|
|
47
|
-
chokidar: '^4.0.3',
|
|
48
|
-
dotenv: '^17.2.2',
|
|
49
|
-
'esm-env': '^1.2.2',
|
|
50
|
-
mri: '^1.2.0',
|
|
51
|
-
'oxc-parser': '^0.87.0',
|
|
52
|
-
prettier: '^3.6.2',
|
|
53
|
-
'prettier-plugin-svelte': '^3.4.0',
|
|
54
|
-
'ts-blank-space': '^0.6.2',
|
|
55
|
-
tslib: '^2.8.1',
|
|
56
|
-
zod: '^4.1.12',
|
|
57
|
-
},
|
|
58
|
-
peerDependencies: {
|
|
59
|
-
'@ryanatkn/belt': '^0.37.0',
|
|
60
|
-
'@sveltejs/kit': '^2',
|
|
61
|
-
esbuild: '^0.25',
|
|
62
|
-
svelte: '^5',
|
|
63
|
-
typescript: '^5',
|
|
64
|
-
vitest: '^3 || ^4',
|
|
65
|
-
},
|
|
66
|
-
peerDependenciesMeta: {'@sveltejs/kit': {optional: true}, vitest: {optional: true}},
|
|
67
|
-
optionalDependencies: {vitest: '^3 || ^4'},
|
|
68
|
-
devDependencies: {
|
|
69
|
-
'@changesets/changelog-git': '^0.2.1',
|
|
70
|
-
'@changesets/types': '^6.1.0',
|
|
71
|
-
'@ryanatkn/eslint-config': '^0.8.1',
|
|
72
|
-
'@ryanatkn/fuz': '^0.147.0',
|
|
73
|
-
'@ryanatkn/moss': '^0.36.0',
|
|
74
|
-
'@sveltejs/adapter-static': '^3.0.10',
|
|
75
|
-
'@sveltejs/kit': '^2.47.2',
|
|
76
|
-
'@sveltejs/package': '^2.5.4',
|
|
77
|
-
'@sveltejs/vite-plugin-svelte': '^6.2.1',
|
|
78
|
-
'@types/node': '^24.3.1',
|
|
79
|
-
esbuild: '^0.25.9',
|
|
80
|
-
eslint: '^9.35.0',
|
|
81
|
-
'eslint-plugin-svelte': '^3.12.5',
|
|
82
|
-
svelte: '^5.41.2',
|
|
83
|
-
'svelte-check': '^4.3.3',
|
|
84
|
-
typescript: '^5.9.3',
|
|
85
|
-
'typescript-eslint': '^8.42.0',
|
|
86
|
-
vitest: '^4.0.3',
|
|
87
|
-
},
|
|
88
|
-
prettier: {
|
|
89
|
-
plugins: ['prettier-plugin-svelte'],
|
|
90
|
-
useTabs: true,
|
|
91
|
-
printWidth: 100,
|
|
92
|
-
singleQuote: true,
|
|
93
|
-
bracketSpacing: false,
|
|
94
|
-
overrides: [{files: 'package.json', options: {useTabs: false}}],
|
|
95
|
-
},
|
|
96
|
-
sideEffects: ['**/*.css'],
|
|
97
|
-
files: ['dist', 'src/lib/**/*.ts', '!src/lib/**/*.test.*', '!dist/**/*.test.*'],
|
|
98
|
-
exports: {
|
|
99
|
-
'./package.json': './package.json',
|
|
100
|
-
'.': {types: './dist/index.d.ts', default: './dist/index.js'},
|
|
101
|
-
'./*.js': {types: './dist/*.d.ts', default: './dist/*.js'},
|
|
102
|
-
'./*.ts': {types: './dist/*.d.ts', default: './dist/*.js'},
|
|
103
|
-
},
|
|
104
|
-
} as any;
|
|
105
|
-
|
|
106
|
-
export const src_json: Src_Json = {
|
|
107
|
-
name: '@ryanatkn/gro',
|
|
108
|
-
version: '0.173.0',
|
|
109
|
-
modules: {
|
|
110
|
-
'.': {
|
|
111
|
-
path: 'index.ts',
|
|
112
|
-
declarations: [
|
|
113
|
-
{name: 'Gro_Config', kind: 'type'},
|
|
114
|
-
{name: 'Create_Gro_Config', kind: 'type'},
|
|
115
|
-
{name: 'Raw_Gro_Config', kind: 'type'},
|
|
116
|
-
{name: 'Plugin', kind: 'type'},
|
|
117
|
-
{name: 'replace_plugin', kind: 'function'},
|
|
118
|
-
{name: 'Gen', kind: 'type'},
|
|
119
|
-
{name: 'Gen_Context', kind: 'type'},
|
|
120
|
-
{name: 'Task', kind: 'type'},
|
|
121
|
-
{name: 'Task_Context', kind: 'type'},
|
|
122
|
-
{name: 'Task_Error', kind: 'class'},
|
|
123
|
-
],
|
|
124
|
-
},
|
|
125
|
-
'./args.js': {
|
|
126
|
-
path: 'args.ts',
|
|
127
|
-
declarations: [
|
|
128
|
-
{name: 'Args', kind: 'type'},
|
|
129
|
-
{name: 'Arg_Value', kind: 'type'},
|
|
130
|
-
{name: 'Arg_Schema', kind: 'type'},
|
|
131
|
-
{name: 'parse_args', kind: 'function'},
|
|
132
|
-
{name: 'serialize_args', kind: 'function'},
|
|
133
|
-
{name: 'to_task_args', kind: 'function'},
|
|
134
|
-
{name: 'to_raw_rest_args', kind: 'function'},
|
|
135
|
-
{name: 'to_forwarded_args', kind: 'function'},
|
|
136
|
-
{name: 'to_forwarded_args_by_command', kind: 'function'},
|
|
137
|
-
{name: 'to_implicit_forwarded_args', kind: 'function'},
|
|
138
|
-
{name: 'print_command_args', kind: 'function'},
|
|
139
|
-
],
|
|
140
|
-
},
|
|
141
|
-
'./build_cache.js': {
|
|
142
|
-
path: 'build_cache.ts',
|
|
143
|
-
declarations: [
|
|
144
|
-
{name: 'BUILD_CACHE_METADATA_FILENAME', kind: 'variable'},
|
|
145
|
-
{name: 'BUILD_CACHE_VERSION', kind: 'variable'},
|
|
146
|
-
{name: 'Build_Output_Entry', kind: 'variable'},
|
|
147
|
-
{name: 'Build_Cache_Metadata', kind: 'variable'},
|
|
148
|
-
{name: 'compute_build_cache_key', kind: 'function'},
|
|
149
|
-
{name: 'load_build_cache_metadata', kind: 'function'},
|
|
150
|
-
{name: 'save_build_cache_metadata', kind: 'function'},
|
|
151
|
-
{name: 'validate_build_cache', kind: 'function'},
|
|
152
|
-
{name: 'is_build_cache_valid', kind: 'function'},
|
|
153
|
-
{name: 'collect_build_outputs', kind: 'function'},
|
|
154
|
-
{name: 'discover_build_output_dirs', kind: 'function'},
|
|
155
|
-
{name: 'create_build_cache_metadata', kind: 'function'},
|
|
156
|
-
],
|
|
157
|
-
},
|
|
158
|
-
'./build.task.js': {
|
|
159
|
-
path: 'build.task.ts',
|
|
160
|
-
declarations: [
|
|
161
|
-
{name: 'Args', kind: 'variable'},
|
|
162
|
-
{name: 'GIT_SHORT_HASH_LENGTH', kind: 'variable'},
|
|
163
|
-
{name: 'task', kind: 'variable'},
|
|
164
|
-
],
|
|
165
|
-
},
|
|
166
|
-
'./changelog.js': {
|
|
167
|
-
path: 'changelog.ts',
|
|
168
|
-
declarations: [{name: 'update_changelog', kind: 'function'}],
|
|
169
|
-
},
|
|
170
|
-
'./changeset_helpers.js': {
|
|
171
|
-
path: 'changeset_helpers.ts',
|
|
172
|
-
declarations: [
|
|
173
|
-
{name: 'CHANGESET_RESTRICTED_ACCESS', kind: 'variable'},
|
|
174
|
-
{name: 'CHANGESET_PUBLIC_ACCESS', kind: 'variable'},
|
|
175
|
-
{name: 'Changeset_Access', kind: 'variable'},
|
|
176
|
-
{name: 'CHANGESET_CLI', kind: 'variable'},
|
|
177
|
-
{name: 'CHANGESET_DIR', kind: 'variable'},
|
|
178
|
-
{name: 'Changeset_Bump', kind: 'variable'},
|
|
179
|
-
],
|
|
180
|
-
},
|
|
181
|
-
'./changeset.task.js': {
|
|
182
|
-
path: 'changeset.task.ts',
|
|
183
|
-
declarations: [
|
|
184
|
-
{name: 'Args', kind: 'variable'},
|
|
185
|
-
{name: 'task', kind: 'variable'},
|
|
186
|
-
],
|
|
187
|
-
},
|
|
188
|
-
'./check.task.js': {
|
|
189
|
-
path: 'check.task.ts',
|
|
190
|
-
declarations: [
|
|
191
|
-
{name: 'Args', kind: 'variable'},
|
|
192
|
-
{name: 'task', kind: 'variable'},
|
|
193
|
-
],
|
|
194
|
-
},
|
|
195
|
-
'./child_process_logging.js': {
|
|
196
|
-
path: 'child_process_logging.ts',
|
|
197
|
-
declarations: [
|
|
198
|
-
{name: 'map_child_process_output', kind: 'function'},
|
|
199
|
-
{name: 'configure_colored_output_with_path_replacement', kind: 'function'},
|
|
200
|
-
],
|
|
201
|
-
},
|
|
202
|
-
'./clean_fs.js': {path: 'clean_fs.ts', declarations: [{name: 'clean_fs', kind: 'function'}]},
|
|
203
|
-
'./clean.task.js': {
|
|
204
|
-
path: 'clean.task.ts',
|
|
205
|
-
declarations: [
|
|
206
|
-
{name: 'Args', kind: 'variable'},
|
|
207
|
-
{name: 'task', kind: 'variable'},
|
|
208
|
-
],
|
|
209
|
-
},
|
|
210
|
-
'./cli.js': {
|
|
211
|
-
path: 'cli.ts',
|
|
212
|
-
declarations: [
|
|
213
|
-
{name: 'Cli', kind: 'type'},
|
|
214
|
-
{name: 'find_cli', kind: 'function'},
|
|
215
|
-
{name: 'spawn_cli', kind: 'function'},
|
|
216
|
-
{name: 'spawn_cli_process', kind: 'function'},
|
|
217
|
-
{name: 'resolve_cli', kind: 'function'},
|
|
218
|
-
{name: 'to_cli_name', kind: 'function'},
|
|
219
|
-
],
|
|
220
|
-
},
|
|
221
|
-
'./commit.task.js': {
|
|
222
|
-
path: 'commit.task.ts',
|
|
223
|
-
declarations: [
|
|
224
|
-
{name: 'Args', kind: 'variable'},
|
|
225
|
-
{name: 'task', kind: 'variable'},
|
|
226
|
-
],
|
|
227
|
-
},
|
|
228
|
-
'./constants.js': {
|
|
229
|
-
path: 'constants.ts',
|
|
230
|
-
declarations: [
|
|
231
|
-
{name: 'SOURCE_DIRNAME', kind: 'variable'},
|
|
232
|
-
{name: 'GRO_DIRNAME', kind: 'variable'},
|
|
233
|
-
{name: 'GRO_DIST_PREFIX', kind: 'variable'},
|
|
234
|
-
{name: 'SERVER_DIST_PATH', kind: 'variable'},
|
|
235
|
-
{name: 'GRO_DEV_DIRNAME', kind: 'variable'},
|
|
236
|
-
{name: 'SOURCE_DIR', kind: 'variable'},
|
|
237
|
-
{name: 'GRO_DIR', kind: 'variable'},
|
|
238
|
-
{name: 'GRO_DEV_DIR', kind: 'variable'},
|
|
239
|
-
{name: 'GRO_CONFIG_FILENAME', kind: 'variable'},
|
|
240
|
-
{name: 'README_FILENAME', kind: 'variable'},
|
|
241
|
-
{name: 'SVELTE_CONFIG_FILENAME', kind: 'variable'},
|
|
242
|
-
{name: 'VITE_CONFIG_FILENAME', kind: 'variable'},
|
|
243
|
-
{name: 'NODE_MODULES_DIRNAME', kind: 'variable'},
|
|
244
|
-
{name: 'PACKAGE_JSON_FILENAME', kind: 'variable'},
|
|
245
|
-
{name: 'LOCKFILE_FILENAME', kind: 'variable'},
|
|
246
|
-
{name: 'SVELTEKIT_DEV_DIRNAME', kind: 'variable'},
|
|
247
|
-
{name: 'SVELTEKIT_BUILD_DIRNAME', kind: 'variable'},
|
|
248
|
-
{name: 'SVELTEKIT_DIST_DIRNAME', kind: 'variable'},
|
|
249
|
-
{name: 'SVELTEKIT_VITE_CACHE_PATH', kind: 'variable'},
|
|
250
|
-
{name: 'GITHUB_DIRNAME', kind: 'variable'},
|
|
251
|
-
{name: 'GIT_DIRNAME', kind: 'variable'},
|
|
252
|
-
{name: 'TSCONFIG_FILENAME', kind: 'variable'},
|
|
253
|
-
{name: 'TS_MATCHER', kind: 'variable'},
|
|
254
|
-
{name: 'JS_MATCHER', kind: 'variable'},
|
|
255
|
-
{name: 'JSON_MATCHER', kind: 'variable'},
|
|
256
|
-
{name: 'SVELTE_MATCHER', kind: 'variable'},
|
|
257
|
-
{name: 'SVELTE_RUNES_MATCHER', kind: 'variable'},
|
|
258
|
-
{name: 'CSS_MATCHER', kind: 'variable'},
|
|
259
|
-
{name: 'SVELTE_SCRIPT_MATCHER', kind: 'variable'},
|
|
260
|
-
{name: 'SVELTEKIT_ENV_MATCHER', kind: 'variable'},
|
|
261
|
-
{name: 'SVELTEKIT_GLOBAL_SPECIFIER', kind: 'variable'},
|
|
262
|
-
{name: 'EVERYTHING_MATCHER', kind: 'variable'},
|
|
263
|
-
{name: 'JS_CLI_DEFAULT', kind: 'variable'},
|
|
264
|
-
{name: 'PM_CLI_DEFAULT', kind: 'variable'},
|
|
265
|
-
{name: 'PRETTIER_CLI_DEFAULT', kind: 'variable'},
|
|
266
|
-
{name: 'SVELTEKIT_CLI', kind: 'variable'},
|
|
267
|
-
{name: 'SVELTE_CHECK_CLI', kind: 'variable'},
|
|
268
|
-
{name: 'SVELTE_PACKAGE_CLI', kind: 'variable'},
|
|
269
|
-
{name: 'SVELTE_PACKAGE_DEP_NAME', kind: 'variable'},
|
|
270
|
-
{name: 'VITE_CLI', kind: 'variable'},
|
|
271
|
-
{name: 'VITEST_CLI', kind: 'variable'},
|
|
272
|
-
],
|
|
273
|
-
},
|
|
274
|
-
'./deploy.task.js': {
|
|
275
|
-
path: 'deploy.task.ts',
|
|
276
|
-
declarations: [
|
|
277
|
-
{name: 'Args', kind: 'variable'},
|
|
278
|
-
{name: 'task', kind: 'variable'},
|
|
279
|
-
],
|
|
280
|
-
},
|
|
281
|
-
'./dev.task.js': {
|
|
282
|
-
path: 'dev.task.ts',
|
|
283
|
-
declarations: [
|
|
284
|
-
{name: 'Args', kind: 'variable'},
|
|
285
|
-
{name: 'DevTask_Context', kind: 'type'},
|
|
286
|
-
{name: 'task', kind: 'variable'},
|
|
287
|
-
],
|
|
288
|
-
},
|
|
289
|
-
'./disknode.js': {path: 'disknode.ts', declarations: [{name: 'Disknode', kind: 'type'}]},
|
|
290
|
-
'./env.js': {
|
|
291
|
-
path: 'env.ts',
|
|
292
|
-
declarations: [
|
|
293
|
-
{name: 'load_env', kind: 'function'},
|
|
294
|
-
{name: 'load_from_env', kind: 'function'},
|
|
295
|
-
{name: 'merge_envs', kind: 'function'},
|
|
296
|
-
{name: 'is_private_env', kind: 'function'},
|
|
297
|
-
{name: 'is_public_env', kind: 'function'},
|
|
298
|
-
],
|
|
299
|
-
},
|
|
300
|
-
'./esbuild_helpers.js': {
|
|
301
|
-
path: 'esbuild_helpers.ts',
|
|
302
|
-
declarations: [
|
|
303
|
-
{name: 'print_build_result', kind: 'function'},
|
|
304
|
-
{name: 'to_define_import_meta_env', kind: 'function'},
|
|
305
|
-
{name: 'default_ts_transform_options', kind: 'variable'},
|
|
306
|
-
],
|
|
307
|
-
},
|
|
308
|
-
'./esbuild_plugin_external_worker.js': {
|
|
309
|
-
path: 'esbuild_plugin_external_worker.ts',
|
|
310
|
-
declarations: [
|
|
311
|
-
{name: 'Esbuild_Plugin_External_Worker_Options', kind: 'type'},
|
|
312
|
-
{name: 'esbuild_plugin_external_worker', kind: 'function'},
|
|
313
|
-
],
|
|
314
|
-
},
|
|
315
|
-
'./esbuild_plugin_svelte.js': {
|
|
316
|
-
path: 'esbuild_plugin_svelte.ts',
|
|
317
|
-
declarations: [
|
|
318
|
-
{name: 'Esbuild_Plugin_Svelte_Options', kind: 'type'},
|
|
319
|
-
{name: 'esbuild_plugin_svelte', kind: 'function'},
|
|
320
|
-
],
|
|
321
|
-
},
|
|
322
|
-
'./esbuild_plugin_sveltekit_local_imports.js': {
|
|
323
|
-
path: 'esbuild_plugin_sveltekit_local_imports.ts',
|
|
324
|
-
declarations: [{name: 'esbuild_plugin_sveltekit_local_imports', kind: 'function'}],
|
|
325
|
-
},
|
|
326
|
-
'./esbuild_plugin_sveltekit_shim_alias.js': {
|
|
327
|
-
path: 'esbuild_plugin_sveltekit_shim_alias.ts',
|
|
328
|
-
declarations: [
|
|
329
|
-
{name: 'Esbuild_Plugin_Sveltekit_Shim_Alias_Options', kind: 'type'},
|
|
330
|
-
{name: 'esbuild_plugin_sveltekit_shim_alias', kind: 'function'},
|
|
331
|
-
],
|
|
332
|
-
},
|
|
333
|
-
'./esbuild_plugin_sveltekit_shim_app.js': {
|
|
334
|
-
path: 'esbuild_plugin_sveltekit_shim_app.ts',
|
|
335
|
-
declarations: [
|
|
336
|
-
{name: 'Esbuild_Plugin_Sveltekit_Shim_App_Options', kind: 'type'},
|
|
337
|
-
{name: 'esbuild_plugin_sveltekit_shim_app', kind: 'function'},
|
|
338
|
-
],
|
|
339
|
-
},
|
|
340
|
-
'./esbuild_plugin_sveltekit_shim_env.js': {
|
|
341
|
-
path: 'esbuild_plugin_sveltekit_shim_env.ts',
|
|
342
|
-
declarations: [
|
|
343
|
-
{name: 'Esbuild_Plugin_Sveltekit_Shim_Env_Options', kind: 'type'},
|
|
344
|
-
{name: 'esbuild_plugin_sveltekit_shim_env', kind: 'function'},
|
|
345
|
-
],
|
|
346
|
-
},
|
|
347
|
-
'./filer.js': {
|
|
348
|
-
path: 'filer.ts',
|
|
349
|
-
declarations: [
|
|
350
|
-
{name: 'On_Filer_Change', kind: 'type'},
|
|
351
|
-
{name: 'Filer_Options', kind: 'type'},
|
|
352
|
-
{name: 'Filer', kind: 'class'},
|
|
353
|
-
{name: 'filter_dependents', kind: 'function'},
|
|
354
|
-
],
|
|
355
|
-
},
|
|
356
|
-
'./format_directory.js': {
|
|
357
|
-
path: 'format_directory.ts',
|
|
358
|
-
declarations: [{name: 'format_directory', kind: 'function'}],
|
|
359
|
-
},
|
|
360
|
-
'./format_file.js': {
|
|
361
|
-
path: 'format_file.ts',
|
|
362
|
-
declarations: [{name: 'format_file', kind: 'function'}],
|
|
363
|
-
},
|
|
364
|
-
'./format.task.js': {
|
|
365
|
-
path: 'format.task.ts',
|
|
366
|
-
declarations: [
|
|
367
|
-
{name: 'Args', kind: 'variable'},
|
|
368
|
-
{name: 'task', kind: 'variable'},
|
|
369
|
-
],
|
|
370
|
-
},
|
|
371
|
-
'./fs.js': {path: 'fs.ts', declarations: [{name: 'empty_dir', kind: 'function'}]},
|
|
372
|
-
'./gen_helpers.js': {
|
|
373
|
-
path: 'gen_helpers.ts',
|
|
374
|
-
declarations: [{name: 'should_trigger_gen', kind: 'function'}],
|
|
375
|
-
},
|
|
376
|
-
'./gen.task.js': {
|
|
377
|
-
path: 'gen.task.ts',
|
|
378
|
-
declarations: [
|
|
379
|
-
{name: 'Args', kind: 'variable'},
|
|
380
|
-
{name: 'task', kind: 'variable'},
|
|
381
|
-
],
|
|
382
|
-
},
|
|
383
|
-
'./gen.js': {
|
|
384
|
-
path: 'gen.ts',
|
|
385
|
-
declarations: [
|
|
386
|
-
{name: 'GEN_FILE_PATTERN_TEXT', kind: 'variable'},
|
|
387
|
-
{name: 'GEN_FILE_PATTERN', kind: 'variable'},
|
|
388
|
-
{name: 'is_gen_path', kind: 'function'},
|
|
389
|
-
{name: 'Gen_Result', kind: 'type'},
|
|
390
|
-
{name: 'Gen_File', kind: 'type'},
|
|
391
|
-
{name: 'Gen_Dependencies', kind: 'type'},
|
|
392
|
-
{name: 'Gen_Dependencies_Config', kind: 'type'},
|
|
393
|
-
{name: 'Gen_Dependencies_Resolver', kind: 'type'},
|
|
394
|
-
{name: 'Gen', kind: 'type'},
|
|
395
|
-
{name: 'Gen_Function', kind: 'type'},
|
|
396
|
-
{name: 'Gen_Config', kind: 'type'},
|
|
397
|
-
{name: 'Gen_Context', kind: 'type'},
|
|
398
|
-
{name: 'Raw_Gen_Result', kind: 'type'},
|
|
399
|
-
{name: 'Raw_Gen_File', kind: 'type'},
|
|
400
|
-
{name: 'Gen_Results', kind: 'type'},
|
|
401
|
-
{name: 'Genfile_Module_Result', kind: 'type'},
|
|
402
|
-
{name: 'Genfile_Module_Result_Success', kind: 'type'},
|
|
403
|
-
{name: 'Genfile_Module_Result_Failure', kind: 'type'},
|
|
404
|
-
{name: 'to_gen_result', kind: 'function'},
|
|
405
|
-
{name: 'to_output_file_name', kind: 'function'},
|
|
406
|
-
{name: 'Analyzed_Gen_Result', kind: 'type'},
|
|
407
|
-
{name: 'analyze_gen_results', kind: 'function'},
|
|
408
|
-
{name: 'analyze_gen_result', kind: 'function'},
|
|
409
|
-
{name: 'write_gen_results', kind: 'function'},
|
|
410
|
-
{name: 'Found_Genfiles', kind: 'type'},
|
|
411
|
-
{name: 'Find_Genfiles_Result', kind: 'type'},
|
|
412
|
-
{name: 'Find_Genfiles_Failure', kind: 'type'},
|
|
413
|
-
{name: 'find_genfiles', kind: 'function'},
|
|
414
|
-
{name: 'Genfile_Module', kind: 'type'},
|
|
415
|
-
{name: 'Genfile_Module_Meta', kind: 'type'},
|
|
416
|
-
{name: 'Loaded_Genfiles', kind: 'type'},
|
|
417
|
-
{name: 'Load_Genfiles_Result', kind: 'type'},
|
|
418
|
-
{name: 'Load_Genfiles_Failure', kind: 'type'},
|
|
419
|
-
{name: 'load_genfiles', kind: 'function'},
|
|
420
|
-
{name: 'validate_gen_module', kind: 'function'},
|
|
421
|
-
{name: 'normalize_gen_config', kind: 'function'},
|
|
422
|
-
],
|
|
423
|
-
},
|
|
424
|
-
'./github.js': {
|
|
425
|
-
path: 'github.ts',
|
|
426
|
-
declarations: [
|
|
427
|
-
{name: 'GITHUB_REPO_MATCHER', kind: 'variable'},
|
|
428
|
-
{name: 'Github_Pull_Request', kind: 'variable'},
|
|
429
|
-
{name: 'github_fetch_commit_prs', kind: 'function'},
|
|
430
|
-
],
|
|
431
|
-
},
|
|
432
|
-
'./gro_config.js': {
|
|
433
|
-
path: 'gro_config.ts',
|
|
434
|
-
declarations: [
|
|
435
|
-
{name: 'EMPTY_BUILD_CACHE_CONFIG_HASH', kind: 'variable'},
|
|
436
|
-
{name: 'Gro_Config', kind: 'type'},
|
|
437
|
-
{name: 'Raw_Gro_Config', kind: 'type'},
|
|
438
|
-
{name: 'Create_Gro_Config', kind: 'type'},
|
|
439
|
-
{name: 'create_empty_gro_config', kind: 'function'},
|
|
440
|
-
{name: 'SEARCH_EXCLUDER_DEFAULT', kind: 'variable'},
|
|
441
|
-
{name: 'EXPORTS_EXCLUDER_DEFAULT', kind: 'variable'},
|
|
442
|
-
{name: 'cook_gro_config', kind: 'function'},
|
|
443
|
-
{name: 'Gro_Config_Module', kind: 'type'},
|
|
444
|
-
{name: 'load_gro_config', kind: 'function'},
|
|
445
|
-
{name: 'validate_gro_config_module', kind: 'function'},
|
|
446
|
-
],
|
|
447
|
-
},
|
|
448
|
-
'./gro_helpers.js': {
|
|
449
|
-
path: 'gro_helpers.ts',
|
|
450
|
-
declarations: [
|
|
451
|
-
{name: 'resolve_gro_module_path', kind: 'function'},
|
|
452
|
-
{name: 'spawn_with_loader', kind: 'function'},
|
|
453
|
-
],
|
|
454
|
-
},
|
|
455
|
-
'./gro_plugin_gen.js': {
|
|
456
|
-
path: 'gro_plugin_gen.ts',
|
|
457
|
-
declarations: [
|
|
458
|
-
{name: 'Task_Args', kind: 'type'},
|
|
459
|
-
{name: 'Gro_Plugin_Gen_Options', kind: 'type'},
|
|
460
|
-
{name: 'gro_plugin_gen', kind: 'function'},
|
|
461
|
-
],
|
|
462
|
-
},
|
|
463
|
-
'./gro_plugin_server.js': {
|
|
464
|
-
path: 'gro_plugin_server.ts',
|
|
465
|
-
declarations: [
|
|
466
|
-
{name: 'SERVER_SOURCE_ID', kind: 'variable'},
|
|
467
|
-
{name: 'has_server', kind: 'function'},
|
|
468
|
-
{name: 'Gro_Plugin_Server_Options', kind: 'type'},
|
|
469
|
-
{name: 'Outpaths', kind: 'type'},
|
|
470
|
-
{name: 'Create_Outpaths', kind: 'type'},
|
|
471
|
-
{name: 'gro_plugin_server', kind: 'function'},
|
|
472
|
-
],
|
|
473
|
-
},
|
|
474
|
-
'./gro_plugin_sveltekit_app.js': {
|
|
475
|
-
path: 'gro_plugin_sveltekit_app.ts',
|
|
476
|
-
declarations: [
|
|
477
|
-
{name: 'Gro_Plugin_Sveltekit_App_Options', kind: 'type'},
|
|
478
|
-
{name: 'Host_Target', kind: 'type'},
|
|
479
|
-
{name: 'Copy_File_Filter', kind: 'type'},
|
|
480
|
-
{name: 'gro_plugin_sveltekit_app', kind: 'function'},
|
|
481
|
-
],
|
|
482
|
-
},
|
|
483
|
-
'./gro_plugin_sveltekit_library.js': {
|
|
484
|
-
path: 'gro_plugin_sveltekit_library.ts',
|
|
485
|
-
declarations: [
|
|
486
|
-
{name: 'Gro_Plugin_Sveltekit_Library_Options', kind: 'type'},
|
|
487
|
-
{name: 'gro_plugin_sveltekit_library', kind: 'function'},
|
|
488
|
-
],
|
|
489
|
-
},
|
|
490
|
-
'./gro.config.default.js': {
|
|
491
|
-
path: 'gro.config.default.ts',
|
|
492
|
-
declarations: [{name: 'default', kind: 'function'}],
|
|
493
|
-
},
|
|
494
|
-
'./gro.js': {path: 'gro.ts'},
|
|
495
|
-
'./hash.js': {path: 'hash.ts', declarations: [{name: 'to_hash', kind: 'function'}]},
|
|
496
|
-
'./index.js': {
|
|
497
|
-
path: 'index.ts',
|
|
498
|
-
declarations: [
|
|
499
|
-
{name: 'Gro_Config', kind: 'type'},
|
|
500
|
-
{name: 'Create_Gro_Config', kind: 'type'},
|
|
501
|
-
{name: 'Raw_Gro_Config', kind: 'type'},
|
|
502
|
-
{name: 'Plugin', kind: 'type'},
|
|
503
|
-
{name: 'replace_plugin', kind: 'function'},
|
|
504
|
-
{name: 'Gen', kind: 'type'},
|
|
505
|
-
{name: 'Gen_Context', kind: 'type'},
|
|
506
|
-
{name: 'Task', kind: 'type'},
|
|
507
|
-
{name: 'Task_Context', kind: 'type'},
|
|
508
|
-
{name: 'Task_Error', kind: 'class'},
|
|
509
|
-
],
|
|
510
|
-
},
|
|
511
|
-
'./input_path.js': {
|
|
512
|
-
path: 'input_path.ts',
|
|
513
|
-
declarations: [
|
|
514
|
-
{name: 'Input_Path', kind: 'variable'},
|
|
515
|
-
{name: 'Raw_Input_Path', kind: 'variable'},
|
|
516
|
-
{name: 'to_input_path', kind: 'function'},
|
|
517
|
-
{name: 'to_input_paths', kind: 'function'},
|
|
518
|
-
{name: 'Possible_Path', kind: 'type'},
|
|
519
|
-
{name: 'get_possible_paths', kind: 'function'},
|
|
520
|
-
{name: 'Resolved_Input_Path', kind: 'type'},
|
|
521
|
-
{name: 'Resolved_Input_File', kind: 'type'},
|
|
522
|
-
{name: 'Resolved_Input_Paths', kind: 'type'},
|
|
523
|
-
{name: 'resolve_input_paths', kind: 'function'},
|
|
524
|
-
{name: 'Resolved_Input_Files', kind: 'type'},
|
|
525
|
-
{name: 'resolve_input_files', kind: 'function'},
|
|
526
|
-
],
|
|
527
|
-
},
|
|
528
|
-
'./invoke_task.js': {
|
|
529
|
-
path: 'invoke_task.ts',
|
|
530
|
-
declarations: [{name: 'invoke_task', kind: 'function'}],
|
|
531
|
-
},
|
|
532
|
-
'./invoke.js': {path: 'invoke.ts'},
|
|
533
|
-
'./lint.task.js': {
|
|
534
|
-
path: 'lint.task.ts',
|
|
535
|
-
declarations: [
|
|
536
|
-
{name: 'Args', kind: 'variable'},
|
|
537
|
-
{name: 'task', kind: 'variable'},
|
|
538
|
-
],
|
|
539
|
-
},
|
|
540
|
-
'./loader.js': {
|
|
541
|
-
path: 'loader.ts',
|
|
542
|
-
declarations: [
|
|
543
|
-
{name: 'load', kind: 'function'},
|
|
544
|
-
{name: 'resolve', kind: 'function'},
|
|
545
|
-
],
|
|
546
|
-
},
|
|
547
|
-
'./module.js': {
|
|
548
|
-
path: 'module.ts',
|
|
549
|
-
declarations: [
|
|
550
|
-
{name: 'MODULE_PATH_SRC_PREFIX', kind: 'variable'},
|
|
551
|
-
{name: 'MODULE_PATH_LIB_PREFIX', kind: 'variable'},
|
|
552
|
-
{name: 'is_external_module', kind: 'function'},
|
|
553
|
-
],
|
|
554
|
-
},
|
|
555
|
-
'./modules.js': {
|
|
556
|
-
path: 'modules.ts',
|
|
557
|
-
declarations: [
|
|
558
|
-
{name: 'Module_Meta', kind: 'type'},
|
|
559
|
-
{name: 'Load_Module_Result', kind: 'type'},
|
|
560
|
-
{name: 'Load_Module_Failure', kind: 'type'},
|
|
561
|
-
{name: 'load_module', kind: 'function'},
|
|
562
|
-
{name: 'Load_Modules_Failure', kind: 'type'},
|
|
563
|
-
{name: 'Load_Modules_Result', kind: 'type'},
|
|
564
|
-
{name: 'load_modules', kind: 'function'},
|
|
565
|
-
],
|
|
566
|
-
},
|
|
567
|
-
'./package_json.js': {
|
|
568
|
-
path: 'package_json.ts',
|
|
569
|
-
declarations: [
|
|
570
|
-
{name: 'Map_Package_Json', kind: 'type'},
|
|
571
|
-
{name: 'EMPTY_PACKAGE_JSON', kind: 'variable'},
|
|
572
|
-
{name: 'load_package_json', kind: 'function'},
|
|
573
|
-
{name: 'sync_package_json', kind: 'function'},
|
|
574
|
-
{name: 'load_gro_package_json', kind: 'function'},
|
|
575
|
-
{name: 'write_package_json', kind: 'function'},
|
|
576
|
-
{name: 'serialize_package_json', kind: 'function'},
|
|
577
|
-
{name: 'update_package_json', kind: 'function'},
|
|
578
|
-
{name: 'to_package_exports', kind: 'function'},
|
|
579
|
-
{name: 'parse_repo_url', kind: 'function'},
|
|
580
|
-
{name: 'has_dep', kind: 'function'},
|
|
581
|
-
{name: 'Package_Json_Dep', kind: 'type'},
|
|
582
|
-
{name: 'extract_deps', kind: 'function'},
|
|
583
|
-
],
|
|
584
|
-
},
|
|
585
|
-
'./package.gen.js': {path: 'package.gen.ts', declarations: [{name: 'gen', kind: 'function'}]},
|
|
586
|
-
'./package.js': {
|
|
587
|
-
path: 'package.ts',
|
|
588
|
-
declarations: [
|
|
589
|
-
{name: 'package_json', kind: 'variable'},
|
|
590
|
-
{name: 'src_json', kind: 'variable'},
|
|
591
|
-
],
|
|
592
|
-
},
|
|
593
|
-
'./parse_exports_context.js': {
|
|
594
|
-
path: 'parse_exports_context.ts',
|
|
595
|
-
declarations: [{name: 'Parse_Exports_Context', kind: 'class'}],
|
|
596
|
-
},
|
|
597
|
-
'./parse_exports.js': {
|
|
598
|
-
path: 'parse_exports.ts',
|
|
599
|
-
declarations: [
|
|
600
|
-
{name: 'Declaration', kind: 'type'},
|
|
601
|
-
{name: 'Export_Declaration', kind: 'type'},
|
|
602
|
-
{name: 'parse_exports', kind: 'function'},
|
|
603
|
-
{name: 'infer_declarations_from_file_type', kind: 'function'},
|
|
604
|
-
{name: 'process_ts_exports', kind: 'function'},
|
|
605
|
-
],
|
|
606
|
-
},
|
|
607
|
-
'./parse_imports.js': {
|
|
608
|
-
path: 'parse_imports.ts',
|
|
609
|
-
declarations: [
|
|
610
|
-
{name: 'Import_Specifier', kind: 'type'},
|
|
611
|
-
{name: 'parse_imports', kind: 'function'},
|
|
612
|
-
],
|
|
613
|
-
},
|
|
614
|
-
'./paths.js': {
|
|
615
|
-
path: 'paths.ts',
|
|
616
|
-
declarations: [
|
|
617
|
-
{name: 'LIB_DIRNAME', kind: 'variable'},
|
|
618
|
-
{name: 'LIB_PATH', kind: 'variable'},
|
|
619
|
-
{name: 'LIB_DIR', kind: 'variable'},
|
|
620
|
-
{name: 'ROUTES_DIRNAME', kind: 'variable'},
|
|
621
|
-
{name: 'Paths', kind: 'type'},
|
|
622
|
-
{name: 'create_paths', kind: 'function'},
|
|
623
|
-
{name: 'infer_paths', kind: 'function'},
|
|
624
|
-
{name: 'is_gro_id', kind: 'function'},
|
|
625
|
-
{name: 'to_root_path', kind: 'function'},
|
|
626
|
-
{name: 'path_id_to_base_path', kind: 'function'},
|
|
627
|
-
{name: 'base_path_to_path_id', kind: 'function'},
|
|
628
|
-
{name: 'print_path', kind: 'function'},
|
|
629
|
-
{name: 'replace_extension', kind: 'function'},
|
|
630
|
-
{name: 'paths', kind: 'variable'},
|
|
631
|
-
{name: 'GRO_PACKAGE_DIR', kind: 'variable'},
|
|
632
|
-
{name: 'IS_THIS_GRO', kind: 'variable'},
|
|
633
|
-
{name: 'gro_paths', kind: 'variable'},
|
|
634
|
-
{name: 'GRO_DIST_DIR', kind: 'variable'},
|
|
635
|
-
],
|
|
636
|
-
},
|
|
637
|
-
'./plugin.js': {
|
|
638
|
-
path: 'plugin.ts',
|
|
639
|
-
declarations: [
|
|
640
|
-
{name: 'Plugin', kind: 'type'},
|
|
641
|
-
{name: 'Create_Config_Plugins', kind: 'type'},
|
|
642
|
-
{name: 'Plugin_Context', kind: 'type'},
|
|
643
|
-
{name: 'Plugins', kind: 'class'},
|
|
644
|
-
{name: 'replace_plugin', kind: 'function'},
|
|
645
|
-
],
|
|
646
|
-
},
|
|
647
|
-
'./publish.task.js': {
|
|
648
|
-
path: 'publish.task.ts',
|
|
649
|
-
declarations: [
|
|
650
|
-
{name: 'Args', kind: 'variable'},
|
|
651
|
-
{name: 'task', kind: 'variable'},
|
|
652
|
-
],
|
|
653
|
-
},
|
|
654
|
-
'./register.js': {path: 'register.ts'},
|
|
655
|
-
'./reinstall.task.js': {
|
|
656
|
-
path: 'reinstall.task.ts',
|
|
657
|
-
declarations: [
|
|
658
|
-
{name: 'Args', kind: 'variable'},
|
|
659
|
-
{name: 'task', kind: 'variable'},
|
|
660
|
-
],
|
|
661
|
-
},
|
|
662
|
-
'./release.task.js': {
|
|
663
|
-
path: 'release.task.ts',
|
|
664
|
-
declarations: [
|
|
665
|
-
{name: 'Args', kind: 'variable'},
|
|
666
|
-
{name: 'task', kind: 'variable'},
|
|
667
|
-
],
|
|
668
|
-
},
|
|
669
|
-
'./resolve_specifier.js': {
|
|
670
|
-
path: 'resolve_specifier.ts',
|
|
671
|
-
declarations: [
|
|
672
|
-
{name: 'Resolved_Specifier', kind: 'type'},
|
|
673
|
-
{name: 'resolve_specifier', kind: 'function'},
|
|
674
|
-
],
|
|
675
|
-
},
|
|
676
|
-
'./resolve.task.js': {
|
|
677
|
-
path: 'resolve.task.ts',
|
|
678
|
-
declarations: [
|
|
679
|
-
{name: 'Args', kind: 'variable'},
|
|
680
|
-
{name: 'task', kind: 'variable'},
|
|
681
|
-
],
|
|
682
|
-
},
|
|
683
|
-
'./run_gen.js': {
|
|
684
|
-
path: 'run_gen.ts',
|
|
685
|
-
declarations: [
|
|
686
|
-
{name: 'GEN_NO_PROD_MESSAGE', kind: 'variable'},
|
|
687
|
-
{name: 'run_gen', kind: 'function'},
|
|
688
|
-
],
|
|
689
|
-
},
|
|
690
|
-
'./run_task.js': {
|
|
691
|
-
path: 'run_task.ts',
|
|
692
|
-
declarations: [
|
|
693
|
-
{name: 'Run_Task_Result', kind: 'type'},
|
|
694
|
-
{name: 'run_task', kind: 'function'},
|
|
695
|
-
],
|
|
696
|
-
},
|
|
697
|
-
'./run.task.js': {
|
|
698
|
-
path: 'run.task.ts',
|
|
699
|
-
declarations: [
|
|
700
|
-
{name: 'Args', kind: 'variable'},
|
|
701
|
-
{name: 'task', kind: 'variable'},
|
|
702
|
-
],
|
|
703
|
-
},
|
|
704
|
-
'./search_fs.js': {
|
|
705
|
-
path: 'search_fs.ts',
|
|
706
|
-
declarations: [
|
|
707
|
-
{name: 'Search_Fs_Options', kind: 'type'},
|
|
708
|
-
{name: 'search_fs', kind: 'function'},
|
|
709
|
-
{name: 'find_first_existing_file', kind: 'function'},
|
|
710
|
-
],
|
|
711
|
-
},
|
|
712
|
-
'./src_json.js': {
|
|
713
|
-
path: 'src_json.ts',
|
|
714
|
-
declarations: [
|
|
715
|
-
{name: 'Map_Src_Json', kind: 'type'},
|
|
716
|
-
{name: 'create_src_json', kind: 'function'},
|
|
717
|
-
{name: 'serialize_src_json', kind: 'function'},
|
|
718
|
-
{name: 'to_src_modules', kind: 'function'},
|
|
719
|
-
],
|
|
720
|
-
},
|
|
721
|
-
'./svelte_config.js': {
|
|
722
|
-
path: 'svelte_config.ts',
|
|
723
|
-
declarations: [
|
|
724
|
-
{name: 'load_svelte_config', kind: 'function'},
|
|
725
|
-
{name: 'Parsed_Svelte_Config', kind: 'type'},
|
|
726
|
-
{name: 'parse_svelte_config', kind: 'function'},
|
|
727
|
-
{name: 'to_default_compile_module_options', kind: 'function'},
|
|
728
|
-
{name: 'default_svelte_config', kind: 'variable'},
|
|
729
|
-
],
|
|
730
|
-
},
|
|
731
|
-
'./sveltekit_helpers.js': {
|
|
732
|
-
path: 'sveltekit_helpers.ts',
|
|
733
|
-
declarations: [
|
|
734
|
-
{name: 'has_sveltekit_app', kind: 'function'},
|
|
735
|
-
{name: 'has_sveltekit_library', kind: 'function'},
|
|
736
|
-
{name: 'sveltekit_sync', kind: 'function'},
|
|
737
|
-
{name: 'sveltekit_sync_if_available', kind: 'function'},
|
|
738
|
-
{name: 'sveltekit_sync_if_obviously_needed', kind: 'function'},
|
|
739
|
-
{name: 'Svelte_Package_Options', kind: 'type'},
|
|
740
|
-
{name: 'run_svelte_package', kind: 'function'},
|
|
741
|
-
{name: 'map_sveltekit_aliases', kind: 'function'},
|
|
742
|
-
],
|
|
743
|
-
},
|
|
744
|
-
'./sveltekit_shim_app_environment.js': {
|
|
745
|
-
path: 'sveltekit_shim_app_environment.ts',
|
|
746
|
-
declarations: [
|
|
747
|
-
{name: 'browser', kind: 'variable'},
|
|
748
|
-
{name: 'building', kind: 'variable'},
|
|
749
|
-
{name: 'dev', kind: 'variable'},
|
|
750
|
-
{name: 'version', kind: 'variable'},
|
|
751
|
-
],
|
|
752
|
-
},
|
|
753
|
-
'./sveltekit_shim_app_forms.js': {
|
|
754
|
-
path: 'sveltekit_shim_app_forms.ts',
|
|
755
|
-
declarations: [
|
|
756
|
-
{name: 'applyAction', kind: 'function'},
|
|
757
|
-
{name: 'deserialize', kind: 'function'},
|
|
758
|
-
{name: 'enhance', kind: 'function'},
|
|
759
|
-
],
|
|
760
|
-
},
|
|
761
|
-
'./sveltekit_shim_app_navigation.js': {
|
|
762
|
-
path: 'sveltekit_shim_app_navigation.ts',
|
|
763
|
-
declarations: [
|
|
764
|
-
{name: 'afterNavigate', kind: 'function'},
|
|
765
|
-
{name: 'beforeNavigate', kind: 'function'},
|
|
766
|
-
{name: 'disableScrollHandling', kind: 'function'},
|
|
767
|
-
{name: 'goto', kind: 'function'},
|
|
768
|
-
{name: 'invalidate', kind: 'function'},
|
|
769
|
-
{name: 'invalidateAll', kind: 'function'},
|
|
770
|
-
{name: 'preloadCode', kind: 'function'},
|
|
771
|
-
{name: 'preloadData', kind: 'function'},
|
|
772
|
-
],
|
|
773
|
-
},
|
|
774
|
-
'./sveltekit_shim_app_paths.js': {
|
|
775
|
-
path: 'sveltekit_shim_app_paths.ts',
|
|
776
|
-
declarations: [
|
|
777
|
-
{name: 'assets', kind: 'variable'},
|
|
778
|
-
{name: 'base', kind: 'variable'},
|
|
779
|
-
{name: 'resolve', kind: 'function'},
|
|
780
|
-
{name: 'resolveRoute', kind: 'function'},
|
|
781
|
-
{name: 'asset', kind: 'function'},
|
|
782
|
-
],
|
|
783
|
-
},
|
|
784
|
-
'./sveltekit_shim_app_state.js': {
|
|
785
|
-
path: 'sveltekit_shim_app_state.ts',
|
|
786
|
-
declarations: [
|
|
787
|
-
{name: 'navigating', kind: 'variable'},
|
|
788
|
-
{name: 'page', kind: 'variable'},
|
|
789
|
-
{name: 'updated', kind: 'variable'},
|
|
790
|
-
],
|
|
791
|
-
},
|
|
792
|
-
'./sveltekit_shim_app.js': {
|
|
793
|
-
path: 'sveltekit_shim_app.ts',
|
|
794
|
-
declarations: [
|
|
795
|
-
{name: 'SVELTEKIT_SHIM_APP_PATHS_MATCHER', kind: 'variable'},
|
|
796
|
-
{name: 'SVELTEKIT_SHIM_APP_ENVIRONMENT_MATCHER', kind: 'variable'},
|
|
797
|
-
{name: 'sveltekit_shim_app_specifiers', kind: 'variable'},
|
|
798
|
-
{name: 'render_sveltekit_shim_app_paths', kind: 'function'},
|
|
799
|
-
{name: 'render_sveltekit_shim_app_environment', kind: 'function'},
|
|
800
|
-
],
|
|
801
|
-
},
|
|
802
|
-
'./sveltekit_shim_env.js': {
|
|
803
|
-
path: 'sveltekit_shim_env.ts',
|
|
804
|
-
declarations: [{name: 'render_env_shim_module', kind: 'function'}],
|
|
805
|
-
},
|
|
806
|
-
'./sync.task.js': {
|
|
807
|
-
path: 'sync.task.ts',
|
|
808
|
-
declarations: [
|
|
809
|
-
{name: 'Args', kind: 'variable'},
|
|
810
|
-
{name: 'task', kind: 'variable'},
|
|
811
|
-
],
|
|
812
|
-
},
|
|
813
|
-
'./task_logging.js': {
|
|
814
|
-
path: 'task_logging.ts',
|
|
815
|
-
declarations: [
|
|
816
|
-
{name: 'log_tasks', kind: 'function'},
|
|
817
|
-
{name: 'log_error_reasons', kind: 'function'},
|
|
818
|
-
{name: 'log_task_help', kind: 'function'},
|
|
819
|
-
],
|
|
820
|
-
},
|
|
821
|
-
'./task.js': {
|
|
822
|
-
path: 'task.ts',
|
|
823
|
-
declarations: [
|
|
824
|
-
{name: 'Task', kind: 'type'},
|
|
825
|
-
{name: 'Task_Context', kind: 'type'},
|
|
826
|
-
{name: 'Invoke_Task', kind: 'type'},
|
|
827
|
-
{name: 'TASK_FILE_SUFFIX_TS', kind: 'variable'},
|
|
828
|
-
{name: 'TASK_FILE_SUFFIX_JS', kind: 'variable'},
|
|
829
|
-
{name: 'TASK_FILE_SUFFIXES', kind: 'variable'},
|
|
830
|
-
{name: 'is_task_path', kind: 'function'},
|
|
831
|
-
{name: 'to_task_name', kind: 'function'},
|
|
832
|
-
{name: 'Task_Error', kind: 'class'},
|
|
833
|
-
{name: 'Silent_Error', kind: 'class'},
|
|
834
|
-
{name: 'Found_Task', kind: 'type'},
|
|
835
|
-
{name: 'Found_Tasks', kind: 'type'},
|
|
836
|
-
{name: 'Find_Tasks_Result', kind: 'type'},
|
|
837
|
-
{name: 'Find_Modules_Failure', kind: 'type'},
|
|
838
|
-
{name: 'find_tasks', kind: 'function'},
|
|
839
|
-
{name: 'Loaded_Tasks', kind: 'type'},
|
|
840
|
-
{name: 'Task_Module', kind: 'type'},
|
|
841
|
-
{name: 'Task_Module_Meta', kind: 'type'},
|
|
842
|
-
{name: 'Load_Tasks_Result', kind: 'type'},
|
|
843
|
-
{name: 'Load_Tasks_Failure', kind: 'type'},
|
|
844
|
-
{name: 'load_tasks', kind: 'function'},
|
|
845
|
-
{name: 'validate_task_module', kind: 'function'},
|
|
846
|
-
],
|
|
847
|
-
},
|
|
848
|
-
'./test.task.js': {
|
|
849
|
-
path: 'test.task.ts',
|
|
850
|
-
declarations: [
|
|
851
|
-
{name: 'Args', kind: 'variable'},
|
|
852
|
-
{name: 'task', kind: 'variable'},
|
|
853
|
-
],
|
|
854
|
-
},
|
|
855
|
-
'./typecheck.task.js': {
|
|
856
|
-
path: 'typecheck.task.ts',
|
|
857
|
-
declarations: [
|
|
858
|
-
{name: 'Args', kind: 'variable'},
|
|
859
|
-
{name: 'task', kind: 'variable'},
|
|
860
|
-
],
|
|
861
|
-
},
|
|
862
|
-
'./upgrade.task.js': {
|
|
863
|
-
path: 'upgrade.task.ts',
|
|
864
|
-
declarations: [
|
|
865
|
-
{name: 'Args', kind: 'variable'},
|
|
866
|
-
{name: 'task', kind: 'variable'},
|
|
867
|
-
],
|
|
868
|
-
},
|
|
869
|
-
'./watch_dir.js': {
|
|
870
|
-
path: 'watch_dir.ts',
|
|
871
|
-
declarations: [
|
|
872
|
-
{name: 'Watch_Node_Fs', kind: 'type'},
|
|
873
|
-
{name: 'Watcher_Change', kind: 'type'},
|
|
874
|
-
{name: 'Watcher_Change_Type', kind: 'type'},
|
|
875
|
-
{name: 'Watcher_Change_Callback', kind: 'type'},
|
|
876
|
-
{name: 'Watch_Dir_Options', kind: 'type'},
|
|
877
|
-
{name: 'watch_dir', kind: 'function'},
|
|
878
|
-
],
|
|
879
|
-
},
|
|
880
|
-
},
|
|
881
|
-
} as any;
|
|
882
|
-
|
|
883
|
-
// generated by src/lib/package.gen.ts
|