@ryanatkn/gro 0.129.4 → 0.129.5
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/package.js +3 -3
- package/package.json +3 -2
- package/src/lib/args.test.ts +59 -0
- package/src/lib/args.ts +169 -0
- package/src/lib/build.task.ts +37 -0
- package/src/lib/changelog.test.ts +138 -0
- package/src/lib/changelog.ts +69 -0
- package/src/lib/changeset.task.ts +206 -0
- package/src/lib/changeset_helpers.ts +13 -0
- package/src/lib/check.task.ts +90 -0
- package/src/lib/clean.task.ts +46 -0
- package/src/lib/clean_fs.ts +54 -0
- package/src/lib/cli.ts +97 -0
- package/src/lib/commit.task.ts +33 -0
- package/src/lib/config.test.ts +71 -0
- package/src/lib/config.ts +161 -0
- package/src/lib/deploy.task.ts +243 -0
- package/src/lib/dev.task.ts +43 -0
- package/src/lib/docs/README.gen.md.ts +63 -0
- package/src/lib/docs/README.md +20 -0
- package/src/lib/docs/build.md +41 -0
- package/src/lib/docs/config.md +213 -0
- package/src/lib/docs/deploy.md +32 -0
- package/src/lib/docs/dev.md +40 -0
- package/src/lib/docs/gen.md +269 -0
- package/src/lib/docs/gro_plugin_sveltekit_app.md +113 -0
- package/src/lib/docs/package_json.md +33 -0
- package/src/lib/docs/plugin.md +50 -0
- package/src/lib/docs/publish.md +137 -0
- package/src/lib/docs/task.md +391 -0
- package/src/lib/docs/tasks.gen.md.ts +90 -0
- package/src/lib/docs/tasks.md +37 -0
- package/src/lib/docs/test.md +52 -0
- package/src/lib/env.ts +75 -0
- package/src/lib/esbuild_helpers.ts +50 -0
- package/src/lib/esbuild_plugin_external_worker.ts +92 -0
- package/src/lib/esbuild_plugin_svelte.test.ts +88 -0
- package/src/lib/esbuild_plugin_svelte.ts +108 -0
- package/src/lib/esbuild_plugin_sveltekit_local_imports.ts +31 -0
- package/src/lib/esbuild_plugin_sveltekit_shim_alias.ts +25 -0
- package/src/lib/esbuild_plugin_sveltekit_shim_app.ts +41 -0
- package/src/lib/esbuild_plugin_sveltekit_shim_env.ts +46 -0
- package/src/lib/format.task.ts +30 -0
- package/src/lib/format_directory.ts +55 -0
- package/src/lib/format_file.test.ts +20 -0
- package/src/lib/format_file.ts +49 -0
- package/src/lib/fs.ts +18 -0
- package/src/lib/gen.task.ts +134 -0
- package/src/lib/gen.test.ts +306 -0
- package/src/lib/gen.ts +360 -0
- package/src/lib/git.test.ts +34 -0
- package/src/lib/git.ts +297 -0
- package/src/lib/github.ts +46 -0
- package/src/lib/gro.config.default.ts +34 -0
- package/src/lib/gro.ts +25 -0
- package/src/lib/gro_helpers.ts +101 -0
- package/src/lib/gro_plugin_gen.ts +95 -0
- package/src/lib/gro_plugin_server.ts +288 -0
- package/src/lib/gro_plugin_sveltekit_app.ts +257 -0
- package/src/lib/gro_plugin_sveltekit_library.ts +74 -0
- package/src/lib/hash.test.ts +33 -0
- package/src/lib/hash.ts +19 -0
- package/src/lib/index.ts +4 -0
- package/src/lib/input_path.test.ts +230 -0
- package/src/lib/input_path.ts +255 -0
- package/src/lib/invoke.ts +27 -0
- package/src/lib/invoke_task.ts +116 -0
- package/src/lib/lint.task.ts +38 -0
- package/src/lib/loader.test.ts +49 -0
- package/src/lib/loader.ts +226 -0
- package/src/lib/module.test.ts +46 -0
- package/src/lib/module.ts +13 -0
- package/src/lib/modules.test.ts +63 -0
- package/src/lib/modules.ts +112 -0
- package/src/lib/package.gen.ts +33 -0
- package/src/lib/package.ts +998 -0
- package/src/lib/package_json.test.ts +101 -0
- package/src/lib/package_json.ts +330 -0
- package/src/lib/package_meta.ts +86 -0
- package/src/lib/path.ts +23 -0
- package/src/lib/path_constants.ts +30 -0
- package/src/lib/paths.test.ts +77 -0
- package/src/lib/paths.ts +101 -0
- package/src/lib/plugin.test.ts +57 -0
- package/src/lib/plugin.ts +113 -0
- package/src/lib/publish.task.ts +194 -0
- package/src/lib/register.ts +3 -0
- package/src/lib/reinstall.task.ts +42 -0
- package/src/lib/release.task.ts +21 -0
- package/src/lib/resolve.task.ts +43 -0
- package/src/lib/resolve_node_specifier.test.ts +31 -0
- package/src/lib/resolve_node_specifier.ts +55 -0
- package/src/lib/resolve_specifier.test.ts +76 -0
- package/src/lib/resolve_specifier.ts +61 -0
- package/src/lib/run.task.ts +41 -0
- package/src/lib/run_gen.test.ts +196 -0
- package/src/lib/run_gen.ts +95 -0
- package/src/lib/run_task.test.ts +86 -0
- package/src/lib/run_task.ts +75 -0
- package/src/lib/search_fs.test.ts +56 -0
- package/src/lib/search_fs.ts +93 -0
- package/src/lib/src_json.test.ts +49 -0
- package/src/lib/src_json.ts +153 -0
- package/src/lib/svelte_helpers.ts +2 -0
- package/src/lib/sveltekit_config.ts +101 -0
- package/src/lib/sveltekit_config_global.ts +6 -0
- package/src/lib/sveltekit_helpers.ts +132 -0
- package/src/lib/sveltekit_shim_app.ts +42 -0
- package/src/lib/sveltekit_shim_app_environment.ts +14 -0
- package/src/lib/sveltekit_shim_app_forms.ts +20 -0
- package/src/lib/sveltekit_shim_app_navigation.ts +23 -0
- package/src/lib/sveltekit_shim_app_paths.ts +16 -0
- package/src/lib/sveltekit_shim_app_stores.ts +25 -0
- package/src/lib/sveltekit_shim_env.ts +45 -0
- package/src/lib/sync.task.ts +47 -0
- package/src/lib/task.test.ts +84 -0
- package/src/lib/task.ts +235 -0
- package/src/lib/task_logging.ts +180 -0
- package/src/lib/test.task.ts +50 -0
- package/src/lib/throttle.test.ts +52 -0
- package/src/lib/throttle.ts +63 -0
- package/src/lib/typecheck.task.ts +57 -0
- package/src/lib/upgrade.task.ts +108 -0
- package/src/lib/watch_dir.ts +88 -0
|
@@ -0,0 +1,998 @@
|
|
|
1
|
+
// generated by src/lib/package.gen.ts
|
|
2
|
+
|
|
3
|
+
import type {Package_Json} from './package_json.js';
|
|
4
|
+
import type {Src_Json} from './src_json.js';
|
|
5
|
+
|
|
6
|
+
export const package_json = {
|
|
7
|
+
name: '@ryanatkn/gro',
|
|
8
|
+
version: '0.129.5',
|
|
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: '>=20.12'},
|
|
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
|
+
'@ryanatkn/belt': '^0.24.3',
|
|
48
|
+
chokidar: '^3.6.0',
|
|
49
|
+
dotenv: '^16.4.5',
|
|
50
|
+
'es-module-lexer': '^1.5.4',
|
|
51
|
+
'esm-env': '^1.0.0',
|
|
52
|
+
mri: '^1.2.0',
|
|
53
|
+
prettier: '^3.3.2',
|
|
54
|
+
'prettier-plugin-svelte': '^3.2.5',
|
|
55
|
+
'ts-morph': '^23.0.0',
|
|
56
|
+
tslib: '^2.6.3',
|
|
57
|
+
zod: '^3.23.8',
|
|
58
|
+
},
|
|
59
|
+
peerDependencies: {esbuild: '^0.21.0', svelte: '^5.0.0-next.0'},
|
|
60
|
+
devDependencies: {
|
|
61
|
+
'@changesets/changelog-git': '^0.2.0',
|
|
62
|
+
'@changesets/types': '^6.0.0',
|
|
63
|
+
'@ryanatkn/eslint-config': '^0.4.0',
|
|
64
|
+
'@ryanatkn/fuz': '^0.108.3',
|
|
65
|
+
'@ryanatkn/moss': '^0.7.0',
|
|
66
|
+
'@sveltejs/adapter-static': '^3.0.2',
|
|
67
|
+
'@sveltejs/kit': '^2.5.18',
|
|
68
|
+
'@sveltejs/package': '^2.3.2',
|
|
69
|
+
'@sveltejs/vite-plugin-svelte': '^3.1.1',
|
|
70
|
+
'@types/fs-extra': '^11.0.4',
|
|
71
|
+
'@types/node': '^20.14.10',
|
|
72
|
+
esbuild: '^0.21.5',
|
|
73
|
+
eslint: '^9.6.0',
|
|
74
|
+
'eslint-plugin-svelte': '^2.41.0',
|
|
75
|
+
svelte: '^5.0.0-next.175',
|
|
76
|
+
'svelte-check': '^3.8.4',
|
|
77
|
+
typescript: '^5.5.3',
|
|
78
|
+
'typescript-eslint': '^8.0.0-alpha.39',
|
|
79
|
+
uvu: '^0.5.6',
|
|
80
|
+
},
|
|
81
|
+
prettier: {
|
|
82
|
+
plugins: ['prettier-plugin-svelte'],
|
|
83
|
+
useTabs: true,
|
|
84
|
+
printWidth: 100,
|
|
85
|
+
singleQuote: true,
|
|
86
|
+
bracketSpacing: false,
|
|
87
|
+
overrides: [{files: 'package.json', options: {useTabs: false}}],
|
|
88
|
+
},
|
|
89
|
+
sideEffects: ['**/*.css'],
|
|
90
|
+
files: ['dist', 'src/lib'],
|
|
91
|
+
exports: {
|
|
92
|
+
'.': {types: './dist/index.d.ts', default: './dist/index.js'},
|
|
93
|
+
'./package.json': './package.json',
|
|
94
|
+
'./args.js': {types: './dist/args.d.ts', default: './dist/args.js'},
|
|
95
|
+
'./build.task.js': {types: './dist/build.task.d.ts', default: './dist/build.task.js'},
|
|
96
|
+
'./changelog.js': {types: './dist/changelog.d.ts', default: './dist/changelog.js'},
|
|
97
|
+
'./changeset_helpers.js': {
|
|
98
|
+
types: './dist/changeset_helpers.d.ts',
|
|
99
|
+
default: './dist/changeset_helpers.js',
|
|
100
|
+
},
|
|
101
|
+
'./changeset.task.js': {
|
|
102
|
+
types: './dist/changeset.task.d.ts',
|
|
103
|
+
default: './dist/changeset.task.js',
|
|
104
|
+
},
|
|
105
|
+
'./check.task.js': {types: './dist/check.task.d.ts', default: './dist/check.task.js'},
|
|
106
|
+
'./clean_fs.js': {types: './dist/clean_fs.d.ts', default: './dist/clean_fs.js'},
|
|
107
|
+
'./clean.task.js': {types: './dist/clean.task.d.ts', default: './dist/clean.task.js'},
|
|
108
|
+
'./cli.js': {types: './dist/cli.d.ts', default: './dist/cli.js'},
|
|
109
|
+
'./commit.task.js': {types: './dist/commit.task.d.ts', default: './dist/commit.task.js'},
|
|
110
|
+
'./config.js': {types: './dist/config.d.ts', default: './dist/config.js'},
|
|
111
|
+
'./deploy.task.js': {types: './dist/deploy.task.d.ts', default: './dist/deploy.task.js'},
|
|
112
|
+
'./dev.task.js': {types: './dist/dev.task.d.ts', default: './dist/dev.task.js'},
|
|
113
|
+
'./env.js': {types: './dist/env.d.ts', default: './dist/env.js'},
|
|
114
|
+
'./esbuild_helpers.js': {
|
|
115
|
+
types: './dist/esbuild_helpers.d.ts',
|
|
116
|
+
default: './dist/esbuild_helpers.js',
|
|
117
|
+
},
|
|
118
|
+
'./esbuild_plugin_external_worker.js': {
|
|
119
|
+
types: './dist/esbuild_plugin_external_worker.d.ts',
|
|
120
|
+
default: './dist/esbuild_plugin_external_worker.js',
|
|
121
|
+
},
|
|
122
|
+
'./esbuild_plugin_svelte.js': {
|
|
123
|
+
types: './dist/esbuild_plugin_svelte.d.ts',
|
|
124
|
+
default: './dist/esbuild_plugin_svelte.js',
|
|
125
|
+
},
|
|
126
|
+
'./esbuild_plugin_sveltekit_local_imports.js': {
|
|
127
|
+
types: './dist/esbuild_plugin_sveltekit_local_imports.d.ts',
|
|
128
|
+
default: './dist/esbuild_plugin_sveltekit_local_imports.js',
|
|
129
|
+
},
|
|
130
|
+
'./esbuild_plugin_sveltekit_shim_alias.js': {
|
|
131
|
+
types: './dist/esbuild_plugin_sveltekit_shim_alias.d.ts',
|
|
132
|
+
default: './dist/esbuild_plugin_sveltekit_shim_alias.js',
|
|
133
|
+
},
|
|
134
|
+
'./esbuild_plugin_sveltekit_shim_app.js': {
|
|
135
|
+
types: './dist/esbuild_plugin_sveltekit_shim_app.d.ts',
|
|
136
|
+
default: './dist/esbuild_plugin_sveltekit_shim_app.js',
|
|
137
|
+
},
|
|
138
|
+
'./esbuild_plugin_sveltekit_shim_env.js': {
|
|
139
|
+
types: './dist/esbuild_plugin_sveltekit_shim_env.d.ts',
|
|
140
|
+
default: './dist/esbuild_plugin_sveltekit_shim_env.js',
|
|
141
|
+
},
|
|
142
|
+
'./format_directory.js': {
|
|
143
|
+
types: './dist/format_directory.d.ts',
|
|
144
|
+
default: './dist/format_directory.js',
|
|
145
|
+
},
|
|
146
|
+
'./format_file.js': {types: './dist/format_file.d.ts', default: './dist/format_file.js'},
|
|
147
|
+
'./format.task.js': {types: './dist/format.task.d.ts', default: './dist/format.task.js'},
|
|
148
|
+
'./fs.js': {types: './dist/fs.d.ts', default: './dist/fs.js'},
|
|
149
|
+
'./gen.task.js': {types: './dist/gen.task.d.ts', default: './dist/gen.task.js'},
|
|
150
|
+
'./gen.js': {types: './dist/gen.d.ts', default: './dist/gen.js'},
|
|
151
|
+
'./git.js': {types: './dist/git.d.ts', default: './dist/git.js'},
|
|
152
|
+
'./github.js': {types: './dist/github.d.ts', default: './dist/github.js'},
|
|
153
|
+
'./gro_helpers.js': {types: './dist/gro_helpers.d.ts', default: './dist/gro_helpers.js'},
|
|
154
|
+
'./gro_plugin_gen.js': {
|
|
155
|
+
types: './dist/gro_plugin_gen.d.ts',
|
|
156
|
+
default: './dist/gro_plugin_gen.js',
|
|
157
|
+
},
|
|
158
|
+
'./gro_plugin_server.js': {
|
|
159
|
+
types: './dist/gro_plugin_server.d.ts',
|
|
160
|
+
default: './dist/gro_plugin_server.js',
|
|
161
|
+
},
|
|
162
|
+
'./gro_plugin_sveltekit_app.js': {
|
|
163
|
+
types: './dist/gro_plugin_sveltekit_app.d.ts',
|
|
164
|
+
default: './dist/gro_plugin_sveltekit_app.js',
|
|
165
|
+
},
|
|
166
|
+
'./gro_plugin_sveltekit_library.js': {
|
|
167
|
+
types: './dist/gro_plugin_sveltekit_library.d.ts',
|
|
168
|
+
default: './dist/gro_plugin_sveltekit_library.js',
|
|
169
|
+
},
|
|
170
|
+
'./gro.config.default.js': {
|
|
171
|
+
types: './dist/gro.config.default.d.ts',
|
|
172
|
+
default: './dist/gro.config.default.js',
|
|
173
|
+
},
|
|
174
|
+
'./gro.js': {types: './dist/gro.d.ts', default: './dist/gro.js'},
|
|
175
|
+
'./hash.js': {types: './dist/hash.d.ts', default: './dist/hash.js'},
|
|
176
|
+
'./input_path.js': {types: './dist/input_path.d.ts', default: './dist/input_path.js'},
|
|
177
|
+
'./invoke_task.js': {types: './dist/invoke_task.d.ts', default: './dist/invoke_task.js'},
|
|
178
|
+
'./invoke.js': {types: './dist/invoke.d.ts', default: './dist/invoke.js'},
|
|
179
|
+
'./lint.task.js': {types: './dist/lint.task.d.ts', default: './dist/lint.task.js'},
|
|
180
|
+
'./loader.js': {types: './dist/loader.d.ts', default: './dist/loader.js'},
|
|
181
|
+
'./module.js': {types: './dist/module.d.ts', default: './dist/module.js'},
|
|
182
|
+
'./modules.js': {types: './dist/modules.d.ts', default: './dist/modules.js'},
|
|
183
|
+
'./package_json.js': {types: './dist/package_json.d.ts', default: './dist/package_json.js'},
|
|
184
|
+
'./package_meta.js': {types: './dist/package_meta.d.ts', default: './dist/package_meta.js'},
|
|
185
|
+
'./package.gen.js': {types: './dist/package.gen.d.ts', default: './dist/package.gen.js'},
|
|
186
|
+
'./package.js': {types: './dist/package.d.ts', default: './dist/package.js'},
|
|
187
|
+
'./path_constants.js': {
|
|
188
|
+
types: './dist/path_constants.d.ts',
|
|
189
|
+
default: './dist/path_constants.js',
|
|
190
|
+
},
|
|
191
|
+
'./path.js': {types: './dist/path.d.ts', default: './dist/path.js'},
|
|
192
|
+
'./paths.js': {types: './dist/paths.d.ts', default: './dist/paths.js'},
|
|
193
|
+
'./plugin.js': {types: './dist/plugin.d.ts', default: './dist/plugin.js'},
|
|
194
|
+
'./publish.task.js': {types: './dist/publish.task.d.ts', default: './dist/publish.task.js'},
|
|
195
|
+
'./register.js': {types: './dist/register.d.ts', default: './dist/register.js'},
|
|
196
|
+
'./reinstall.task.js': {
|
|
197
|
+
types: './dist/reinstall.task.d.ts',
|
|
198
|
+
default: './dist/reinstall.task.js',
|
|
199
|
+
},
|
|
200
|
+
'./release.task.js': {types: './dist/release.task.d.ts', default: './dist/release.task.js'},
|
|
201
|
+
'./resolve_node_specifier.js': {
|
|
202
|
+
types: './dist/resolve_node_specifier.d.ts',
|
|
203
|
+
default: './dist/resolve_node_specifier.js',
|
|
204
|
+
},
|
|
205
|
+
'./resolve_specifier.js': {
|
|
206
|
+
types: './dist/resolve_specifier.d.ts',
|
|
207
|
+
default: './dist/resolve_specifier.js',
|
|
208
|
+
},
|
|
209
|
+
'./resolve.task.js': {types: './dist/resolve.task.d.ts', default: './dist/resolve.task.js'},
|
|
210
|
+
'./run_gen.js': {types: './dist/run_gen.d.ts', default: './dist/run_gen.js'},
|
|
211
|
+
'./run_task.js': {types: './dist/run_task.d.ts', default: './dist/run_task.js'},
|
|
212
|
+
'./run.task.js': {types: './dist/run.task.d.ts', default: './dist/run.task.js'},
|
|
213
|
+
'./search_fs.js': {types: './dist/search_fs.d.ts', default: './dist/search_fs.js'},
|
|
214
|
+
'./src_json.js': {types: './dist/src_json.d.ts', default: './dist/src_json.js'},
|
|
215
|
+
'./svelte_helpers.js': {
|
|
216
|
+
types: './dist/svelte_helpers.d.ts',
|
|
217
|
+
default: './dist/svelte_helpers.js',
|
|
218
|
+
},
|
|
219
|
+
'./sveltekit_config_global.js': {
|
|
220
|
+
types: './dist/sveltekit_config_global.d.ts',
|
|
221
|
+
default: './dist/sveltekit_config_global.js',
|
|
222
|
+
},
|
|
223
|
+
'./sveltekit_config.js': {
|
|
224
|
+
types: './dist/sveltekit_config.d.ts',
|
|
225
|
+
default: './dist/sveltekit_config.js',
|
|
226
|
+
},
|
|
227
|
+
'./sveltekit_helpers.js': {
|
|
228
|
+
types: './dist/sveltekit_helpers.d.ts',
|
|
229
|
+
default: './dist/sveltekit_helpers.js',
|
|
230
|
+
},
|
|
231
|
+
'./sveltekit_shim_app_environment.js': {
|
|
232
|
+
types: './dist/sveltekit_shim_app_environment.d.ts',
|
|
233
|
+
default: './dist/sveltekit_shim_app_environment.js',
|
|
234
|
+
},
|
|
235
|
+
'./sveltekit_shim_app_forms.js': {
|
|
236
|
+
types: './dist/sveltekit_shim_app_forms.d.ts',
|
|
237
|
+
default: './dist/sveltekit_shim_app_forms.js',
|
|
238
|
+
},
|
|
239
|
+
'./sveltekit_shim_app_navigation.js': {
|
|
240
|
+
types: './dist/sveltekit_shim_app_navigation.d.ts',
|
|
241
|
+
default: './dist/sveltekit_shim_app_navigation.js',
|
|
242
|
+
},
|
|
243
|
+
'./sveltekit_shim_app_paths.js': {
|
|
244
|
+
types: './dist/sveltekit_shim_app_paths.d.ts',
|
|
245
|
+
default: './dist/sveltekit_shim_app_paths.js',
|
|
246
|
+
},
|
|
247
|
+
'./sveltekit_shim_app_stores.js': {
|
|
248
|
+
types: './dist/sveltekit_shim_app_stores.d.ts',
|
|
249
|
+
default: './dist/sveltekit_shim_app_stores.js',
|
|
250
|
+
},
|
|
251
|
+
'./sveltekit_shim_app.js': {
|
|
252
|
+
types: './dist/sveltekit_shim_app.d.ts',
|
|
253
|
+
default: './dist/sveltekit_shim_app.js',
|
|
254
|
+
},
|
|
255
|
+
'./sveltekit_shim_env.js': {
|
|
256
|
+
types: './dist/sveltekit_shim_env.d.ts',
|
|
257
|
+
default: './dist/sveltekit_shim_env.js',
|
|
258
|
+
},
|
|
259
|
+
'./sync.task.js': {types: './dist/sync.task.d.ts', default: './dist/sync.task.js'},
|
|
260
|
+
'./task_logging.js': {types: './dist/task_logging.d.ts', default: './dist/task_logging.js'},
|
|
261
|
+
'./task.js': {types: './dist/task.d.ts', default: './dist/task.js'},
|
|
262
|
+
'./test.task.js': {types: './dist/test.task.d.ts', default: './dist/test.task.js'},
|
|
263
|
+
'./throttle.js': {types: './dist/throttle.d.ts', default: './dist/throttle.js'},
|
|
264
|
+
'./typecheck.task.js': {
|
|
265
|
+
types: './dist/typecheck.task.d.ts',
|
|
266
|
+
default: './dist/typecheck.task.js',
|
|
267
|
+
},
|
|
268
|
+
'./upgrade.task.js': {types: './dist/upgrade.task.d.ts', default: './dist/upgrade.task.js'},
|
|
269
|
+
'./watch_dir.js': {types: './dist/watch_dir.d.ts', default: './dist/watch_dir.js'},
|
|
270
|
+
},
|
|
271
|
+
} satisfies Package_Json;
|
|
272
|
+
|
|
273
|
+
export const src_json = {
|
|
274
|
+
name: '@ryanatkn/gro',
|
|
275
|
+
version: '0.129.5',
|
|
276
|
+
modules: {
|
|
277
|
+
'.': {
|
|
278
|
+
path: 'index.ts',
|
|
279
|
+
declarations: [
|
|
280
|
+
{name: 'Gro_Config', kind: 'type'},
|
|
281
|
+
{name: 'Create_Gro_Config', kind: 'type'},
|
|
282
|
+
{name: 'Raw_Gro_Config', kind: 'type'},
|
|
283
|
+
{name: 'Plugin', kind: 'type'},
|
|
284
|
+
{name: 'replace_plugin', kind: 'function'},
|
|
285
|
+
{name: 'Gen', kind: 'type'},
|
|
286
|
+
{name: 'Gen_Context', kind: 'type'},
|
|
287
|
+
{name: 'Task', kind: 'type'},
|
|
288
|
+
{name: 'Task_Context', kind: 'type'},
|
|
289
|
+
{name: 'Task_Error', kind: 'class'},
|
|
290
|
+
],
|
|
291
|
+
},
|
|
292
|
+
'./package.json': {path: 'package.json', declarations: []},
|
|
293
|
+
'./args.js': {
|
|
294
|
+
path: 'args.ts',
|
|
295
|
+
declarations: [
|
|
296
|
+
{name: 'Args', kind: 'type'},
|
|
297
|
+
{name: 'Arg_Value', kind: 'type'},
|
|
298
|
+
{name: 'Arg_Schema', kind: 'type'},
|
|
299
|
+
{name: 'parse_args', kind: 'function'},
|
|
300
|
+
{name: 'serialize_args', kind: 'function'},
|
|
301
|
+
{name: 'to_task_args', kind: 'function'},
|
|
302
|
+
{name: 'to_raw_rest_args', kind: 'function'},
|
|
303
|
+
{name: 'to_forwarded_args', kind: 'function'},
|
|
304
|
+
{name: 'to_forwarded_args_by_command', kind: 'function'},
|
|
305
|
+
{name: 'print_command_args', kind: 'function'},
|
|
306
|
+
],
|
|
307
|
+
},
|
|
308
|
+
'./build.task.js': {
|
|
309
|
+
path: 'build.task.ts',
|
|
310
|
+
declarations: [
|
|
311
|
+
{name: 'Args', kind: 'variable'},
|
|
312
|
+
{name: 'task', kind: 'variable'},
|
|
313
|
+
],
|
|
314
|
+
},
|
|
315
|
+
'./changelog.js': {
|
|
316
|
+
path: 'changelog.ts',
|
|
317
|
+
declarations: [{name: 'update_changelog', kind: 'function'}],
|
|
318
|
+
},
|
|
319
|
+
'./changeset_helpers.js': {
|
|
320
|
+
path: 'changeset_helpers.ts',
|
|
321
|
+
declarations: [
|
|
322
|
+
{name: 'CHANGESET_RESTRICTED_ACCESS', kind: 'variable'},
|
|
323
|
+
{name: 'CHANGESET_PUBLIC_ACCESS', kind: 'variable'},
|
|
324
|
+
{name: 'Changeset_Access', kind: 'variable'},
|
|
325
|
+
{name: 'CHANGESET_CLI', kind: 'variable'},
|
|
326
|
+
{name: 'CHANGESET_DIR', kind: 'variable'},
|
|
327
|
+
{name: 'Changeset_Bump', kind: 'variable'},
|
|
328
|
+
],
|
|
329
|
+
},
|
|
330
|
+
'./changeset.task.js': {
|
|
331
|
+
path: 'changeset.task.ts',
|
|
332
|
+
declarations: [
|
|
333
|
+
{name: 'Args', kind: 'variable'},
|
|
334
|
+
{name: 'task', kind: 'variable'},
|
|
335
|
+
],
|
|
336
|
+
},
|
|
337
|
+
'./check.task.js': {
|
|
338
|
+
path: 'check.task.ts',
|
|
339
|
+
declarations: [
|
|
340
|
+
{name: 'Args', kind: 'variable'},
|
|
341
|
+
{name: 'task', kind: 'variable'},
|
|
342
|
+
],
|
|
343
|
+
},
|
|
344
|
+
'./clean_fs.js': {path: 'clean_fs.ts', declarations: [{name: 'clean_fs', kind: 'function'}]},
|
|
345
|
+
'./clean.task.js': {
|
|
346
|
+
path: 'clean.task.ts',
|
|
347
|
+
declarations: [
|
|
348
|
+
{name: 'Args', kind: 'variable'},
|
|
349
|
+
{name: 'task', kind: 'variable'},
|
|
350
|
+
],
|
|
351
|
+
},
|
|
352
|
+
'./cli.js': {
|
|
353
|
+
path: 'cli.ts',
|
|
354
|
+
declarations: [
|
|
355
|
+
{name: 'Cli', kind: 'type'},
|
|
356
|
+
{name: 'find_cli', kind: 'function'},
|
|
357
|
+
{name: 'spawn_cli', kind: 'function'},
|
|
358
|
+
{name: 'spawn_cli_process', kind: 'function'},
|
|
359
|
+
{name: 'resolve_cli', kind: 'function'},
|
|
360
|
+
{name: 'to_cli_name', kind: 'function'},
|
|
361
|
+
],
|
|
362
|
+
},
|
|
363
|
+
'./commit.task.js': {
|
|
364
|
+
path: 'commit.task.ts',
|
|
365
|
+
declarations: [
|
|
366
|
+
{name: 'Args', kind: 'variable'},
|
|
367
|
+
{name: 'task', kind: 'variable'},
|
|
368
|
+
],
|
|
369
|
+
},
|
|
370
|
+
'./config.js': {
|
|
371
|
+
path: 'config.ts',
|
|
372
|
+
declarations: [
|
|
373
|
+
{name: 'Gro_Config', kind: 'type'},
|
|
374
|
+
{name: 'Raw_Gro_Config', kind: 'type'},
|
|
375
|
+
{name: 'Create_Gro_Config', kind: 'type'},
|
|
376
|
+
{name: 'create_empty_config', kind: 'function'},
|
|
377
|
+
{name: 'DEFAULT_SEARCH_EXCLUDER', kind: 'variable'},
|
|
378
|
+
{name: 'DEFAULT_EXPORTS_EXCLUDER', kind: 'variable'},
|
|
379
|
+
{name: 'normalize_config', kind: 'function'},
|
|
380
|
+
{name: 'Gro_Config_Module', kind: 'type'},
|
|
381
|
+
{name: 'load_config', kind: 'function'},
|
|
382
|
+
{name: 'validate_config_module', kind: 'function'},
|
|
383
|
+
],
|
|
384
|
+
},
|
|
385
|
+
'./deploy.task.js': {
|
|
386
|
+
path: 'deploy.task.ts',
|
|
387
|
+
declarations: [
|
|
388
|
+
{name: 'Args', kind: 'variable'},
|
|
389
|
+
{name: 'task', kind: 'variable'},
|
|
390
|
+
],
|
|
391
|
+
},
|
|
392
|
+
'./dev.task.js': {
|
|
393
|
+
path: 'dev.task.ts',
|
|
394
|
+
declarations: [
|
|
395
|
+
{name: 'Args', kind: 'variable'},
|
|
396
|
+
{name: 'DevTask_Context', kind: 'type'},
|
|
397
|
+
{name: 'task', kind: 'variable'},
|
|
398
|
+
],
|
|
399
|
+
},
|
|
400
|
+
'./env.js': {
|
|
401
|
+
path: 'env.ts',
|
|
402
|
+
declarations: [
|
|
403
|
+
{name: 'load_env', kind: 'function'},
|
|
404
|
+
{name: 'merge_envs', kind: 'function'},
|
|
405
|
+
{name: 'is_private_env', kind: 'function'},
|
|
406
|
+
{name: 'is_public_env', kind: 'function'},
|
|
407
|
+
{name: 'load_from_env', kind: 'function'},
|
|
408
|
+
],
|
|
409
|
+
},
|
|
410
|
+
'./esbuild_helpers.js': {
|
|
411
|
+
path: 'esbuild_helpers.ts',
|
|
412
|
+
declarations: [
|
|
413
|
+
{name: 'print_build_result', kind: 'function'},
|
|
414
|
+
{name: 'to_define_import_meta_env', kind: 'function'},
|
|
415
|
+
{name: 'ts_transform_options', kind: 'variable'},
|
|
416
|
+
],
|
|
417
|
+
},
|
|
418
|
+
'./esbuild_plugin_external_worker.js': {
|
|
419
|
+
path: 'esbuild_plugin_external_worker.ts',
|
|
420
|
+
declarations: [
|
|
421
|
+
{name: 'Options', kind: 'type'},
|
|
422
|
+
{name: 'esbuild_plugin_external_worker', kind: 'function'},
|
|
423
|
+
],
|
|
424
|
+
},
|
|
425
|
+
'./esbuild_plugin_svelte.js': {
|
|
426
|
+
path: 'esbuild_plugin_svelte.ts',
|
|
427
|
+
declarations: [
|
|
428
|
+
{name: 'Options', kind: 'type'},
|
|
429
|
+
{name: 'esbuild_plugin_svelte', kind: 'function'},
|
|
430
|
+
],
|
|
431
|
+
},
|
|
432
|
+
'./esbuild_plugin_sveltekit_local_imports.js': {
|
|
433
|
+
path: 'esbuild_plugin_sveltekit_local_imports.ts',
|
|
434
|
+
declarations: [{name: 'esbuild_plugin_sveltekit_local_imports', kind: 'function'}],
|
|
435
|
+
},
|
|
436
|
+
'./esbuild_plugin_sveltekit_shim_alias.js': {
|
|
437
|
+
path: 'esbuild_plugin_sveltekit_shim_alias.ts',
|
|
438
|
+
declarations: [
|
|
439
|
+
{name: 'Options', kind: 'type'},
|
|
440
|
+
{name: 'esbuild_plugin_sveltekit_shim_alias', kind: 'function'},
|
|
441
|
+
],
|
|
442
|
+
},
|
|
443
|
+
'./esbuild_plugin_sveltekit_shim_app.js': {
|
|
444
|
+
path: 'esbuild_plugin_sveltekit_shim_app.ts',
|
|
445
|
+
declarations: [
|
|
446
|
+
{name: 'Options', kind: 'type'},
|
|
447
|
+
{name: 'esbuild_plugin_sveltekit_shim_app', kind: 'function'},
|
|
448
|
+
],
|
|
449
|
+
},
|
|
450
|
+
'./esbuild_plugin_sveltekit_shim_env.js': {
|
|
451
|
+
path: 'esbuild_plugin_sveltekit_shim_env.ts',
|
|
452
|
+
declarations: [
|
|
453
|
+
{name: 'Options', kind: 'type'},
|
|
454
|
+
{name: 'esbuild_plugin_sveltekit_shim_env', kind: 'function'},
|
|
455
|
+
],
|
|
456
|
+
},
|
|
457
|
+
'./format_directory.js': {
|
|
458
|
+
path: 'format_directory.ts',
|
|
459
|
+
declarations: [{name: 'format_directory', kind: 'function'}],
|
|
460
|
+
},
|
|
461
|
+
'./format_file.js': {
|
|
462
|
+
path: 'format_file.ts',
|
|
463
|
+
declarations: [{name: 'format_file', kind: 'function'}],
|
|
464
|
+
},
|
|
465
|
+
'./format.task.js': {
|
|
466
|
+
path: 'format.task.ts',
|
|
467
|
+
declarations: [
|
|
468
|
+
{name: 'Args', kind: 'variable'},
|
|
469
|
+
{name: 'task', kind: 'variable'},
|
|
470
|
+
],
|
|
471
|
+
},
|
|
472
|
+
'./fs.js': {path: 'fs.ts', declarations: [{name: 'clean_fs', kind: 'function'}]},
|
|
473
|
+
'./gen.task.js': {
|
|
474
|
+
path: 'gen.task.ts',
|
|
475
|
+
declarations: [
|
|
476
|
+
{name: 'Args', kind: 'variable'},
|
|
477
|
+
{name: 'task', kind: 'variable'},
|
|
478
|
+
],
|
|
479
|
+
},
|
|
480
|
+
'./gen.js': {
|
|
481
|
+
path: 'gen.ts',
|
|
482
|
+
declarations: [
|
|
483
|
+
{name: 'GEN_FILE_PATTERN_TEXT', kind: 'variable'},
|
|
484
|
+
{name: 'GEN_FILE_PATTERN', kind: 'variable'},
|
|
485
|
+
{name: 'is_gen_path', kind: 'function'},
|
|
486
|
+
{name: 'Gen_Result', kind: 'type'},
|
|
487
|
+
{name: 'Gen_File', kind: 'type'},
|
|
488
|
+
{name: 'Gen', kind: 'type'},
|
|
489
|
+
{name: 'Gen_Context', kind: 'type'},
|
|
490
|
+
{name: 'Raw_Gen_Result', kind: 'type'},
|
|
491
|
+
{name: 'Raw_Gen_File', kind: 'type'},
|
|
492
|
+
{name: 'Gen_Config', kind: 'variable'},
|
|
493
|
+
{name: 'Gen_Results', kind: 'type'},
|
|
494
|
+
{name: 'Genfile_Module_Result', kind: 'type'},
|
|
495
|
+
{name: 'Genfile_Module_Result_Success', kind: 'type'},
|
|
496
|
+
{name: 'Genfile_Module_Result_Failure', kind: 'type'},
|
|
497
|
+
{name: 'to_gen_result', kind: 'function'},
|
|
498
|
+
{name: 'to_output_file_name', kind: 'function'},
|
|
499
|
+
{name: 'Analyzed_Gen_Result', kind: 'type'},
|
|
500
|
+
{name: 'analyze_gen_results', kind: 'function'},
|
|
501
|
+
{name: 'analyze_gen_result', kind: 'function'},
|
|
502
|
+
{name: 'write_gen_results', kind: 'function'},
|
|
503
|
+
{name: 'Found_Genfiles', kind: 'type'},
|
|
504
|
+
{name: 'Find_Genfiles_Result', kind: 'type'},
|
|
505
|
+
{name: 'Find_Genfiles_Failure', kind: 'type'},
|
|
506
|
+
{name: 'find_genfiles', kind: 'function'},
|
|
507
|
+
{name: 'Genfile_Module', kind: 'type'},
|
|
508
|
+
{name: 'Genfile_Module_Meta', kind: 'type'},
|
|
509
|
+
{name: 'Loaded_Genfiles', kind: 'type'},
|
|
510
|
+
{name: 'Load_Genfiles_Result', kind: 'type'},
|
|
511
|
+
{name: 'Load_Genfiles_Failure', kind: 'type'},
|
|
512
|
+
{name: 'load_genfiles', kind: 'function'},
|
|
513
|
+
{name: 'validate_gen_module', kind: 'function'},
|
|
514
|
+
],
|
|
515
|
+
},
|
|
516
|
+
'./git.js': {
|
|
517
|
+
path: 'git.ts',
|
|
518
|
+
declarations: [
|
|
519
|
+
{name: 'Git_Origin', kind: 'variable'},
|
|
520
|
+
{name: 'Git_Branch', kind: 'variable'},
|
|
521
|
+
{name: 'git_current_branch_name', kind: 'function'},
|
|
522
|
+
{name: 'git_remote_branch_exists', kind: 'function'},
|
|
523
|
+
{name: 'git_local_branch_exists', kind: 'function'},
|
|
524
|
+
{name: 'git_check_clean_workspace', kind: 'function'},
|
|
525
|
+
{name: 'git_check_fully_staged_workspace', kind: 'function'},
|
|
526
|
+
{name: 'git_fetch', kind: 'function'},
|
|
527
|
+
{name: 'git_checkout', kind: 'function'},
|
|
528
|
+
{name: 'git_pull', kind: 'function'},
|
|
529
|
+
{name: 'git_push', kind: 'function'},
|
|
530
|
+
{name: 'git_push_to_create', kind: 'function'},
|
|
531
|
+
{name: 'git_delete_local_branch', kind: 'function'},
|
|
532
|
+
{name: 'git_delete_remote_branch', kind: 'function'},
|
|
533
|
+
{name: 'git_reset_branch_to_first_commit', kind: 'function'},
|
|
534
|
+
{name: 'git_current_commit_hash', kind: 'function'},
|
|
535
|
+
{name: 'git_current_branch_first_commit_hash', kind: 'function'},
|
|
536
|
+
{name: 'git_check_setting_pull_rebase', kind: 'function'},
|
|
537
|
+
{name: 'git_clone_locally', kind: 'function'},
|
|
538
|
+
],
|
|
539
|
+
},
|
|
540
|
+
'./github.js': {
|
|
541
|
+
path: 'github.ts',
|
|
542
|
+
declarations: [
|
|
543
|
+
{name: 'GITHUB_REPO_MATCHER', kind: 'variable'},
|
|
544
|
+
{name: 'Github_Pull_Request', kind: 'variable'},
|
|
545
|
+
{name: 'github_fetch_commit_prs', kind: 'function'},
|
|
546
|
+
],
|
|
547
|
+
},
|
|
548
|
+
'./gro_helpers.js': {
|
|
549
|
+
path: 'gro_helpers.ts',
|
|
550
|
+
declarations: [
|
|
551
|
+
{name: 'resolve_gro_module_path', kind: 'function'},
|
|
552
|
+
{name: 'spawn_with_loader', kind: 'function'},
|
|
553
|
+
],
|
|
554
|
+
},
|
|
555
|
+
'./gro_plugin_gen.js': {
|
|
556
|
+
path: 'gro_plugin_gen.ts',
|
|
557
|
+
declarations: [
|
|
558
|
+
{name: 'Task_Args', kind: 'type'},
|
|
559
|
+
{name: 'plugin', kind: 'function'},
|
|
560
|
+
],
|
|
561
|
+
},
|
|
562
|
+
'./gro_plugin_server.js': {
|
|
563
|
+
path: 'gro_plugin_server.ts',
|
|
564
|
+
declarations: [
|
|
565
|
+
{name: 'SERVER_SOURCE_ID', kind: 'variable'},
|
|
566
|
+
{name: 'has_server', kind: 'function'},
|
|
567
|
+
{name: 'Options', kind: 'type'},
|
|
568
|
+
{name: 'Outpaths', kind: 'type'},
|
|
569
|
+
{name: 'Create_Outpaths', kind: 'type'},
|
|
570
|
+
{name: 'gro_plugin_server', kind: 'function'},
|
|
571
|
+
],
|
|
572
|
+
},
|
|
573
|
+
'./gro_plugin_sveltekit_app.js': {
|
|
574
|
+
path: 'gro_plugin_sveltekit_app.ts',
|
|
575
|
+
declarations: [
|
|
576
|
+
{name: 'Options', kind: 'type'},
|
|
577
|
+
{name: 'Host_Target', kind: 'type'},
|
|
578
|
+
{name: 'Copy_File_Filter', kind: 'type'},
|
|
579
|
+
{name: 'gro_plugin_sveltekit_app', kind: 'function'},
|
|
580
|
+
],
|
|
581
|
+
},
|
|
582
|
+
'./gro_plugin_sveltekit_library.js': {
|
|
583
|
+
path: 'gro_plugin_sveltekit_library.ts',
|
|
584
|
+
declarations: [
|
|
585
|
+
{name: 'Options', kind: 'type'},
|
|
586
|
+
{name: 'gro_plugin_sveltekit_library', kind: 'function'},
|
|
587
|
+
],
|
|
588
|
+
},
|
|
589
|
+
'./gro.config.default.js': {
|
|
590
|
+
path: 'gro.config.default.ts',
|
|
591
|
+
declarations: [{name: 'default', kind: 'function'}],
|
|
592
|
+
},
|
|
593
|
+
'./gro.js': {path: 'gro.ts', declarations: []},
|
|
594
|
+
'./hash.js': {path: 'hash.ts', declarations: [{name: 'to_hash', kind: 'function'}]},
|
|
595
|
+
'./input_path.js': {
|
|
596
|
+
path: 'input_path.ts',
|
|
597
|
+
declarations: [
|
|
598
|
+
{name: 'Input_Path', kind: 'variable'},
|
|
599
|
+
{name: 'Raw_Input_Path', kind: 'variable'},
|
|
600
|
+
{name: 'to_input_path', kind: 'function'},
|
|
601
|
+
{name: 'to_input_paths', kind: 'function'},
|
|
602
|
+
{name: 'Possible_Path', kind: 'type'},
|
|
603
|
+
{name: 'get_possible_paths', kind: 'function'},
|
|
604
|
+
{name: 'Resolved_Input_Path', kind: 'type'},
|
|
605
|
+
{name: 'Resolved_Input_File', kind: 'type'},
|
|
606
|
+
{name: 'Resolved_Input_Paths', kind: 'type'},
|
|
607
|
+
{name: 'resolve_input_paths', kind: 'function'},
|
|
608
|
+
{name: 'Resolved_Input_Files', kind: 'type'},
|
|
609
|
+
{name: 'resolve_input_files', kind: 'function'},
|
|
610
|
+
],
|
|
611
|
+
},
|
|
612
|
+
'./invoke_task.js': {
|
|
613
|
+
path: 'invoke_task.ts',
|
|
614
|
+
declarations: [{name: 'invoke_task', kind: 'function'}],
|
|
615
|
+
},
|
|
616
|
+
'./invoke.js': {path: 'invoke.ts', declarations: []},
|
|
617
|
+
'./lint.task.js': {
|
|
618
|
+
path: 'lint.task.ts',
|
|
619
|
+
declarations: [
|
|
620
|
+
{name: 'Args', kind: 'variable'},
|
|
621
|
+
{name: 'task', kind: 'variable'},
|
|
622
|
+
],
|
|
623
|
+
},
|
|
624
|
+
'./loader.js': {
|
|
625
|
+
path: 'loader.ts',
|
|
626
|
+
declarations: [
|
|
627
|
+
{name: 'load', kind: 'function'},
|
|
628
|
+
{name: 'resolve', kind: 'function'},
|
|
629
|
+
],
|
|
630
|
+
},
|
|
631
|
+
'./module.js': {path: 'module.ts', declarations: []},
|
|
632
|
+
'./modules.js': {
|
|
633
|
+
path: 'modules.ts',
|
|
634
|
+
declarations: [
|
|
635
|
+
{name: 'Module_Meta', kind: 'type'},
|
|
636
|
+
{name: 'Load_Module_Result', kind: 'type'},
|
|
637
|
+
{name: 'Load_Module_Failure', kind: 'type'},
|
|
638
|
+
{name: 'load_module', kind: 'function'},
|
|
639
|
+
{name: 'Load_Modules_Failure', kind: 'type'},
|
|
640
|
+
{name: 'Load_Modules_Result', kind: 'type'},
|
|
641
|
+
{name: 'load_modules', kind: 'function'},
|
|
642
|
+
],
|
|
643
|
+
},
|
|
644
|
+
'./package_json.js': {
|
|
645
|
+
path: 'package_json.ts',
|
|
646
|
+
declarations: [
|
|
647
|
+
{name: 'Url', kind: 'variable'},
|
|
648
|
+
{name: 'Email', kind: 'variable'},
|
|
649
|
+
{name: 'transform_empty_object_to_undefined', kind: 'function'},
|
|
650
|
+
{name: 'Package_Json_Repository', kind: 'variable'},
|
|
651
|
+
{name: 'Package_Json_Author', kind: 'variable'},
|
|
652
|
+
{name: 'Package_Json_Funding', kind: 'variable'},
|
|
653
|
+
{name: 'Package_Json_Exports', kind: 'variable'},
|
|
654
|
+
{name: 'Package_Json', kind: 'variable'},
|
|
655
|
+
{name: 'Map_Package_Json', kind: 'type'},
|
|
656
|
+
{name: 'EMPTY_PACKAGE_JSON', kind: 'variable'},
|
|
657
|
+
{name: 'load_package_json', kind: 'function'},
|
|
658
|
+
{name: 'sync_package_json', kind: 'function'},
|
|
659
|
+
{name: 'load_gro_package_json', kind: 'function'},
|
|
660
|
+
{name: 'write_package_json', kind: 'function'},
|
|
661
|
+
{name: 'serialize_package_json', kind: 'function'},
|
|
662
|
+
{name: 'update_package_json', kind: 'function'},
|
|
663
|
+
{name: 'to_package_exports', kind: 'function'},
|
|
664
|
+
{name: 'parse_repo_url', kind: 'function'},
|
|
665
|
+
],
|
|
666
|
+
},
|
|
667
|
+
'./package_meta.js': {
|
|
668
|
+
path: 'package_meta.ts',
|
|
669
|
+
declarations: [
|
|
670
|
+
{name: 'Package_Meta', kind: 'type'},
|
|
671
|
+
{name: 'parse_package_meta', kind: 'function'},
|
|
672
|
+
{name: 'parse_repo_name', kind: 'function'},
|
|
673
|
+
{name: 'parse_org_url', kind: 'function'},
|
|
674
|
+
],
|
|
675
|
+
},
|
|
676
|
+
'./package.gen.js': {path: 'package.gen.ts', declarations: [{name: 'gen', kind: 'function'}]},
|
|
677
|
+
'./package.js': {
|
|
678
|
+
path: 'package.ts',
|
|
679
|
+
declarations: [
|
|
680
|
+
{name: 'package_json', kind: 'variable'},
|
|
681
|
+
{name: 'src_json', kind: 'variable'},
|
|
682
|
+
],
|
|
683
|
+
},
|
|
684
|
+
'./path_constants.js': {
|
|
685
|
+
path: 'path_constants.ts',
|
|
686
|
+
declarations: [
|
|
687
|
+
{name: 'SOURCE_DIRNAME', kind: 'variable'},
|
|
688
|
+
{name: 'GRO_DIRNAME', kind: 'variable'},
|
|
689
|
+
{name: 'GRO_DIST_PREFIX', kind: 'variable'},
|
|
690
|
+
{name: 'SERVER_DIST_PATH', kind: 'variable'},
|
|
691
|
+
{name: 'GRO_DEV_DIRNAME', kind: 'variable'},
|
|
692
|
+
{name: 'SOURCE_DIR', kind: 'variable'},
|
|
693
|
+
{name: 'GRO_DIR', kind: 'variable'},
|
|
694
|
+
{name: 'GRO_DEV_DIR', kind: 'variable'},
|
|
695
|
+
{name: 'GRO_CONFIG_PATH', kind: 'variable'},
|
|
696
|
+
{name: 'README_FILENAME', kind: 'variable'},
|
|
697
|
+
{name: 'SVELTEKIT_CONFIG_FILENAME', kind: 'variable'},
|
|
698
|
+
{name: 'VITE_CONFIG_FILENAME', kind: 'variable'},
|
|
699
|
+
{name: 'NODE_MODULES_DIRNAME', kind: 'variable'},
|
|
700
|
+
{name: 'LOCKFILE_FILENAME', kind: 'variable'},
|
|
701
|
+
{name: 'SVELTEKIT_DEV_DIRNAME', kind: 'variable'},
|
|
702
|
+
{name: 'SVELTEKIT_BUILD_DIRNAME', kind: 'variable'},
|
|
703
|
+
{name: 'SVELTEKIT_DIST_DIRNAME', kind: 'variable'},
|
|
704
|
+
{name: 'SVELTEKIT_VITE_CACHE_PATH', kind: 'variable'},
|
|
705
|
+
{name: 'GITHUB_DIRNAME', kind: 'variable'},
|
|
706
|
+
{name: 'GIT_DIRNAME', kind: 'variable'},
|
|
707
|
+
{name: 'TSCONFIG_FILENAME', kind: 'variable'},
|
|
708
|
+
],
|
|
709
|
+
},
|
|
710
|
+
'./path.js': {
|
|
711
|
+
path: 'path.ts',
|
|
712
|
+
declarations: [
|
|
713
|
+
{name: 'Input_Path', kind: 'variable'},
|
|
714
|
+
{name: 'Raw_Input_Path', kind: 'variable'},
|
|
715
|
+
{name: 'to_input_path', kind: 'function'},
|
|
716
|
+
{name: 'to_input_paths', kind: 'function'},
|
|
717
|
+
{name: 'Possible_Path', kind: 'type'},
|
|
718
|
+
{name: 'get_possible_paths', kind: 'function'},
|
|
719
|
+
{name: 'Resolved_Input_Path', kind: 'type'},
|
|
720
|
+
{name: 'Resolved_Input_File', kind: 'type'},
|
|
721
|
+
{name: 'Resolved_Input_Paths', kind: 'type'},
|
|
722
|
+
{name: 'resolve_input_paths', kind: 'function'},
|
|
723
|
+
{name: 'Resolved_Input_Files', kind: 'type'},
|
|
724
|
+
{name: 'resolve_input_files', kind: 'function'},
|
|
725
|
+
],
|
|
726
|
+
},
|
|
727
|
+
'./paths.js': {
|
|
728
|
+
path: 'paths.ts',
|
|
729
|
+
declarations: [
|
|
730
|
+
{name: 'LIB_DIRNAME', kind: 'variable'},
|
|
731
|
+
{name: 'LIB_PATH', kind: 'variable'},
|
|
732
|
+
{name: 'LIB_DIR', kind: 'variable'},
|
|
733
|
+
{name: 'ROUTES_DIRNAME', kind: 'variable'},
|
|
734
|
+
{name: 'Paths', kind: 'type'},
|
|
735
|
+
{name: 'create_paths', kind: 'function'},
|
|
736
|
+
{name: 'infer_paths', kind: 'function'},
|
|
737
|
+
{name: 'is_gro_id', kind: 'function'},
|
|
738
|
+
{name: 'to_root_path', kind: 'function'},
|
|
739
|
+
{name: 'path_id_to_base_path', kind: 'function'},
|
|
740
|
+
{name: 'base_path_to_path_id', kind: 'function'},
|
|
741
|
+
{name: 'print_path', kind: 'function'},
|
|
742
|
+
{name: 'replace_extension', kind: 'function'},
|
|
743
|
+
{name: 'paths', kind: 'variable'},
|
|
744
|
+
{name: 'GRO_PACKAGE_DIR', kind: 'variable'},
|
|
745
|
+
{name: 'IS_THIS_GRO', kind: 'variable'},
|
|
746
|
+
{name: 'gro_paths', kind: 'variable'},
|
|
747
|
+
{name: 'GRO_DIST_DIR', kind: 'variable'},
|
|
748
|
+
],
|
|
749
|
+
},
|
|
750
|
+
'./plugin.js': {
|
|
751
|
+
path: 'plugin.ts',
|
|
752
|
+
declarations: [
|
|
753
|
+
{name: 'Plugin', kind: 'type'},
|
|
754
|
+
{name: 'Create_Config_Plugins', kind: 'type'},
|
|
755
|
+
{name: 'Plugin_Context', kind: 'type'},
|
|
756
|
+
{name: 'Plugins', kind: 'class'},
|
|
757
|
+
{name: 'replace_plugin', kind: 'function'},
|
|
758
|
+
],
|
|
759
|
+
},
|
|
760
|
+
'./publish.task.js': {
|
|
761
|
+
path: 'publish.task.ts',
|
|
762
|
+
declarations: [
|
|
763
|
+
{name: 'Args', kind: 'variable'},
|
|
764
|
+
{name: 'task', kind: 'variable'},
|
|
765
|
+
],
|
|
766
|
+
},
|
|
767
|
+
'./register.js': {path: 'register.ts', declarations: []},
|
|
768
|
+
'./reinstall.task.js': {
|
|
769
|
+
path: 'reinstall.task.ts',
|
|
770
|
+
declarations: [
|
|
771
|
+
{name: 'Args', kind: 'variable'},
|
|
772
|
+
{name: 'task', kind: 'variable'},
|
|
773
|
+
],
|
|
774
|
+
},
|
|
775
|
+
'./release.task.js': {
|
|
776
|
+
path: 'release.task.ts',
|
|
777
|
+
declarations: [
|
|
778
|
+
{name: 'Args', kind: 'variable'},
|
|
779
|
+
{name: 'task', kind: 'variable'},
|
|
780
|
+
],
|
|
781
|
+
},
|
|
782
|
+
'./resolve_node_specifier.js': {
|
|
783
|
+
path: 'resolve_node_specifier.ts',
|
|
784
|
+
declarations: [
|
|
785
|
+
{name: 'resolve_node_specifier', kind: 'function'},
|
|
786
|
+
{name: 'Parsed_Node_Specifier', kind: 'type'},
|
|
787
|
+
{name: 'parse_node_specifier', kind: 'function'},
|
|
788
|
+
],
|
|
789
|
+
},
|
|
790
|
+
'./resolve_specifier.js': {
|
|
791
|
+
path: 'resolve_specifier.ts',
|
|
792
|
+
declarations: [
|
|
793
|
+
{name: 'Resolved_Specifier', kind: 'type'},
|
|
794
|
+
{name: 'resolve_specifier', kind: 'function'},
|
|
795
|
+
],
|
|
796
|
+
},
|
|
797
|
+
'./resolve.task.js': {
|
|
798
|
+
path: 'resolve.task.ts',
|
|
799
|
+
declarations: [
|
|
800
|
+
{name: 'Args', kind: 'variable'},
|
|
801
|
+
{name: 'task', kind: 'variable'},
|
|
802
|
+
],
|
|
803
|
+
},
|
|
804
|
+
'./run_gen.js': {
|
|
805
|
+
path: 'run_gen.ts',
|
|
806
|
+
declarations: [
|
|
807
|
+
{name: 'GEN_NO_PROD_MESSAGE', kind: 'variable'},
|
|
808
|
+
{name: 'run_gen', kind: 'function'},
|
|
809
|
+
],
|
|
810
|
+
},
|
|
811
|
+
'./run_task.js': {
|
|
812
|
+
path: 'run_task.ts',
|
|
813
|
+
declarations: [
|
|
814
|
+
{name: 'Run_Task_Result', kind: 'type'},
|
|
815
|
+
{name: 'run_task', kind: 'function'},
|
|
816
|
+
],
|
|
817
|
+
},
|
|
818
|
+
'./run.task.js': {
|
|
819
|
+
path: 'run.task.ts',
|
|
820
|
+
declarations: [
|
|
821
|
+
{name: 'Args', kind: 'variable'},
|
|
822
|
+
{name: 'task', kind: 'variable'},
|
|
823
|
+
],
|
|
824
|
+
},
|
|
825
|
+
'./search_fs.js': {
|
|
826
|
+
path: 'search_fs.ts',
|
|
827
|
+
declarations: [
|
|
828
|
+
{name: 'Search_Fs_Options', kind: 'type'},
|
|
829
|
+
{name: 'search_fs', kind: 'function'},
|
|
830
|
+
],
|
|
831
|
+
},
|
|
832
|
+
'./src_json.js': {
|
|
833
|
+
path: 'src_json.ts',
|
|
834
|
+
declarations: [
|
|
835
|
+
{name: 'Src_Module_Declaration', kind: 'variable'},
|
|
836
|
+
{name: 'Src_Module', kind: 'variable'},
|
|
837
|
+
{name: 'Src_Modules', kind: 'variable'},
|
|
838
|
+
{name: 'Src_Json', kind: 'variable'},
|
|
839
|
+
{name: 'Map_Src_Json', kind: 'type'},
|
|
840
|
+
{name: 'create_src_json', kind: 'function'},
|
|
841
|
+
{name: 'serialize_src_json', kind: 'function'},
|
|
842
|
+
{name: 'to_src_modules', kind: 'function'},
|
|
843
|
+
],
|
|
844
|
+
},
|
|
845
|
+
'./svelte_helpers.js': {
|
|
846
|
+
path: 'svelte_helpers.ts',
|
|
847
|
+
declarations: [
|
|
848
|
+
{name: 'SVELTE_MATCHER', kind: 'variable'},
|
|
849
|
+
{name: 'SVELTE_RUNES_MATCHER', kind: 'variable'},
|
|
850
|
+
],
|
|
851
|
+
},
|
|
852
|
+
'./sveltekit_config_global.js': {
|
|
853
|
+
path: 'sveltekit_config_global.ts',
|
|
854
|
+
declarations: [{name: 'sveltekit_config_global', kind: 'variable'}],
|
|
855
|
+
},
|
|
856
|
+
'./sveltekit_config.js': {
|
|
857
|
+
path: 'sveltekit_config.ts',
|
|
858
|
+
declarations: [
|
|
859
|
+
{name: 'load_sveltekit_config', kind: 'function'},
|
|
860
|
+
{name: 'Parsed_Sveltekit_Config', kind: 'type'},
|
|
861
|
+
{name: 'init_sveltekit_config', kind: 'function'},
|
|
862
|
+
],
|
|
863
|
+
},
|
|
864
|
+
'./sveltekit_helpers.js': {
|
|
865
|
+
path: 'sveltekit_helpers.ts',
|
|
866
|
+
declarations: [
|
|
867
|
+
{name: 'SVELTEKIT_CLI', kind: 'variable'},
|
|
868
|
+
{name: 'SVELTE_CHECK_CLI', kind: 'variable'},
|
|
869
|
+
{name: 'SVELTE_PACKAGE_CLI', kind: 'variable'},
|
|
870
|
+
{name: 'SVELTE_PACKAGE_DEP_NAME', kind: 'variable'},
|
|
871
|
+
{name: 'VITE_CLI', kind: 'variable'},
|
|
872
|
+
{name: 'has_sveltekit_app', kind: 'function'},
|
|
873
|
+
{name: 'has_sveltekit_library', kind: 'function'},
|
|
874
|
+
{name: 'sveltekit_sync', kind: 'function'},
|
|
875
|
+
{name: 'sveltekit_sync_if_obviously_needed', kind: 'function'},
|
|
876
|
+
{name: 'Svelte_Package_Options', kind: 'type'},
|
|
877
|
+
],
|
|
878
|
+
},
|
|
879
|
+
'./sveltekit_shim_app_environment.js': {
|
|
880
|
+
path: 'sveltekit_shim_app_environment.ts',
|
|
881
|
+
declarations: [
|
|
882
|
+
{name: 'browser', kind: 'variable'},
|
|
883
|
+
{name: 'building', kind: 'variable'},
|
|
884
|
+
{name: 'dev', kind: 'variable'},
|
|
885
|
+
{name: 'version', kind: 'variable'},
|
|
886
|
+
],
|
|
887
|
+
},
|
|
888
|
+
'./sveltekit_shim_app_forms.js': {
|
|
889
|
+
path: 'sveltekit_shim_app_forms.ts',
|
|
890
|
+
declarations: [
|
|
891
|
+
{name: 'applyAction', kind: 'function'},
|
|
892
|
+
{name: 'deserialize', kind: 'function'},
|
|
893
|
+
{name: 'enhance', kind: 'function'},
|
|
894
|
+
],
|
|
895
|
+
},
|
|
896
|
+
'./sveltekit_shim_app_navigation.js': {
|
|
897
|
+
path: 'sveltekit_shim_app_navigation.ts',
|
|
898
|
+
declarations: [
|
|
899
|
+
{name: 'afterNavigate', kind: 'function'},
|
|
900
|
+
{name: 'beforeNavigate', kind: 'function'},
|
|
901
|
+
{name: 'disableScrollHandling', kind: 'function'},
|
|
902
|
+
{name: 'goto', kind: 'function'},
|
|
903
|
+
{name: 'invalidate', kind: 'function'},
|
|
904
|
+
{name: 'invalidateAll', kind: 'function'},
|
|
905
|
+
{name: 'preloadCode', kind: 'function'},
|
|
906
|
+
{name: 'preloadData', kind: 'function'},
|
|
907
|
+
],
|
|
908
|
+
},
|
|
909
|
+
'./sveltekit_shim_app_paths.js': {
|
|
910
|
+
path: 'sveltekit_shim_app_paths.ts',
|
|
911
|
+
declarations: [
|
|
912
|
+
{name: 'assets', kind: 'variable'},
|
|
913
|
+
{name: 'base', kind: 'variable'},
|
|
914
|
+
{name: 'resolveRoute', kind: 'function'},
|
|
915
|
+
],
|
|
916
|
+
},
|
|
917
|
+
'./sveltekit_shim_app_stores.js': {
|
|
918
|
+
path: 'sveltekit_shim_app_stores.ts',
|
|
919
|
+
declarations: [
|
|
920
|
+
{name: 'getStores', kind: 'function'},
|
|
921
|
+
{name: 'navigating', kind: 'variable'},
|
|
922
|
+
{name: 'page', kind: 'variable'},
|
|
923
|
+
{name: 'updated', kind: 'variable'},
|
|
924
|
+
],
|
|
925
|
+
},
|
|
926
|
+
'./sveltekit_shim_app.js': {
|
|
927
|
+
path: 'sveltekit_shim_app.ts',
|
|
928
|
+
declarations: [
|
|
929
|
+
{name: 'Options', kind: 'type'},
|
|
930
|
+
{name: 'esbuild_plugin_sveltekit_shim_app', kind: 'function'},
|
|
931
|
+
],
|
|
932
|
+
},
|
|
933
|
+
'./sveltekit_shim_env.js': {
|
|
934
|
+
path: 'sveltekit_shim_env.ts',
|
|
935
|
+
declarations: [
|
|
936
|
+
{name: 'Options', kind: 'type'},
|
|
937
|
+
{name: 'esbuild_plugin_sveltekit_shim_env', kind: 'function'},
|
|
938
|
+
],
|
|
939
|
+
},
|
|
940
|
+
'./sync.task.js': {
|
|
941
|
+
path: 'sync.task.ts',
|
|
942
|
+
declarations: [
|
|
943
|
+
{name: 'Args', kind: 'variable'},
|
|
944
|
+
{name: 'task', kind: 'variable'},
|
|
945
|
+
],
|
|
946
|
+
},
|
|
947
|
+
'./task_logging.js': {
|
|
948
|
+
path: 'task_logging.ts',
|
|
949
|
+
declarations: [
|
|
950
|
+
{name: 'log_tasks', kind: 'function'},
|
|
951
|
+
{name: 'log_error_reasons', kind: 'function'},
|
|
952
|
+
{name: 'log_task_help', kind: 'function'},
|
|
953
|
+
],
|
|
954
|
+
},
|
|
955
|
+
'./task.js': {
|
|
956
|
+
path: 'task.ts',
|
|
957
|
+
declarations: [
|
|
958
|
+
{name: 'Args', kind: 'variable'},
|
|
959
|
+
{name: 'task', kind: 'variable'},
|
|
960
|
+
],
|
|
961
|
+
},
|
|
962
|
+
'./test.task.js': {
|
|
963
|
+
path: 'test.task.ts',
|
|
964
|
+
declarations: [
|
|
965
|
+
{name: 'Args', kind: 'variable'},
|
|
966
|
+
{name: 'task', kind: 'variable'},
|
|
967
|
+
],
|
|
968
|
+
},
|
|
969
|
+
'./throttle.js': {path: 'throttle.ts', declarations: [{name: 'throttle', kind: 'function'}]},
|
|
970
|
+
'./typecheck.task.js': {
|
|
971
|
+
path: 'typecheck.task.ts',
|
|
972
|
+
declarations: [
|
|
973
|
+
{name: 'Args', kind: 'variable'},
|
|
974
|
+
{name: 'task', kind: 'variable'},
|
|
975
|
+
],
|
|
976
|
+
},
|
|
977
|
+
'./upgrade.task.js': {
|
|
978
|
+
path: 'upgrade.task.ts',
|
|
979
|
+
declarations: [
|
|
980
|
+
{name: 'Args', kind: 'variable'},
|
|
981
|
+
{name: 'task', kind: 'variable'},
|
|
982
|
+
],
|
|
983
|
+
},
|
|
984
|
+
'./watch_dir.js': {
|
|
985
|
+
path: 'watch_dir.ts',
|
|
986
|
+
declarations: [
|
|
987
|
+
{name: 'Watch_Node_Fs', kind: 'type'},
|
|
988
|
+
{name: 'Watcher_Change', kind: 'type'},
|
|
989
|
+
{name: 'Watcher_Change_Type', kind: 'type'},
|
|
990
|
+
{name: 'Watcher_Change_Callback', kind: 'type'},
|
|
991
|
+
{name: 'Options', kind: 'type'},
|
|
992
|
+
{name: 'watch_dir', kind: 'function'},
|
|
993
|
+
],
|
|
994
|
+
},
|
|
995
|
+
},
|
|
996
|
+
} satisfies Src_Json;
|
|
997
|
+
|
|
998
|
+
// generated by src/lib/package.gen.ts
|