@ryanatkn/gro 0.168.0 → 0.169.1
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/args.d.ts +15 -1
- package/dist/args.d.ts.map +1 -1
- package/dist/args.js +26 -0
- package/dist/changeset.task.d.ts +1 -1
- package/dist/changeset.task.d.ts.map +1 -1
- package/dist/changeset.task.js +1 -1
- package/dist/check.task.d.ts.map +1 -1
- package/dist/check.task.js +1 -1
- package/dist/clean.task.d.ts +1 -1
- package/dist/clean.task.d.ts.map +1 -1
- package/dist/clean.task.js +1 -1
- package/dist/cli.d.ts +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/commit.task.d.ts +1 -1
- package/dist/commit.task.d.ts.map +1 -1
- package/dist/commit.task.js +1 -1
- package/dist/deploy.task.d.ts +3 -3
- package/dist/deploy.task.d.ts.map +1 -1
- package/dist/deploy.task.js +1 -1
- package/dist/disknode.d.ts +1 -1
- package/dist/disknode.d.ts.map +1 -1
- package/dist/esbuild_plugin_external_worker.d.ts.map +1 -1
- package/dist/filer.d.ts +1 -1
- package/dist/filer.d.ts.map +1 -1
- package/dist/gen.d.ts +1 -1
- package/dist/gen.d.ts.map +1 -1
- package/dist/gen_helpers.d.ts +1 -1
- package/dist/gen_helpers.d.ts.map +1 -1
- package/dist/gro_config.d.ts +1 -1
- package/dist/gro_config.d.ts.map +1 -1
- package/dist/gro_plugin_server.d.ts +2 -2
- package/dist/gro_plugin_server.d.ts.map +1 -1
- package/dist/input_path.d.ts +1 -1
- package/dist/input_path.d.ts.map +1 -1
- package/dist/modules.d.ts +1 -1
- package/dist/modules.d.ts.map +1 -1
- package/dist/package.d.ts.map +1 -1
- package/dist/package.js +5 -38
- package/dist/package_json.d.ts.map +1 -1
- package/dist/package_json.js +4 -0
- package/dist/parse_exports.d.ts +1 -1
- package/dist/parse_exports.d.ts.map +1 -1
- package/dist/parse_imports.d.ts +1 -1
- package/dist/parse_imports.d.ts.map +1 -1
- package/dist/paths.d.ts +1 -1
- package/dist/paths.d.ts.map +1 -1
- package/dist/publish.task.d.ts +2 -2
- package/dist/publish.task.d.ts.map +1 -1
- package/dist/publish.task.js +1 -1
- package/dist/resolve_specifier.d.ts +1 -1
- package/dist/resolve_specifier.d.ts.map +1 -1
- package/dist/search_fs.d.ts +1 -1
- package/dist/search_fs.d.ts.map +1 -1
- package/dist/task.d.ts +1 -1
- package/dist/task.d.ts.map +1 -1
- package/dist/test.task.js +2 -2
- package/dist/upgrade.task.d.ts +1 -1
- package/dist/upgrade.task.d.ts.map +1 -1
- package/dist/upgrade.task.js +1 -1
- package/dist/watch_dir.d.ts +1 -1
- package/dist/watch_dir.d.ts.map +1 -1
- package/package.json +6 -2
- package/src/lib/args.ts +32 -1
- package/src/lib/changeset.task.ts +5 -1
- package/src/lib/check.task.ts +1 -1
- package/src/lib/clean.task.ts +1 -1
- package/src/lib/cli.ts +1 -1
- package/src/lib/commit.task.ts +1 -1
- package/src/lib/deploy.task.ts +6 -6
- package/src/lib/disknode.ts +1 -1
- package/src/lib/esbuild_plugin_external_worker.ts +1 -1
- package/src/lib/filer.ts +1 -1
- package/src/lib/gen.ts +1 -1
- package/src/lib/gen_helpers.ts +1 -1
- package/src/lib/gro_config.ts +1 -1
- package/src/lib/gro_plugin_server.ts +1 -1
- package/src/lib/input_path.ts +1 -1
- package/src/lib/modules.ts +1 -1
- package/src/lib/package.ts +5 -38
- package/src/lib/package_json.ts +4 -0
- package/src/lib/parse_exports.ts +1 -1
- package/src/lib/parse_imports.ts +1 -1
- package/src/lib/paths.ts +1 -1
- package/src/lib/publish.task.ts +8 -8
- package/src/lib/resolve_specifier.ts +1 -1
- package/src/lib/search_fs.ts +1 -2
- package/src/lib/task.ts +1 -1
- package/src/lib/test.task.ts +2 -2
- package/src/lib/upgrade.task.ts +1 -1
- package/src/lib/watch_dir.ts +1 -2
- package/dist/git.d.ts +0 -81
- package/dist/git.d.ts.map +0 -1
- package/dist/git.js +0 -218
- package/dist/path.d.ts +0 -17
- package/dist/path.d.ts.map +0 -1
- package/dist/path.js +0 -2
- package/src/lib/git.ts +0 -298
- package/src/lib/path.ts +0 -23
package/dist/publish.task.js
CHANGED
|
@@ -2,13 +2,13 @@ import { spawn } from '@ryanatkn/belt/process.js';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { styleText as st } from 'node:util';
|
|
4
4
|
import { existsSync } from 'node:fs';
|
|
5
|
+
import { Git_Branch, Git_Origin, git_check_clean_workspace, git_checkout, git_fetch, git_pull, } from '@ryanatkn/belt/git.js';
|
|
5
6
|
import { Task_Error } from "./task.js";
|
|
6
7
|
import { load_package_json, parse_repo_url } from "./package_json.js";
|
|
7
8
|
import { find_cli, spawn_cli } from "./cli.js";
|
|
8
9
|
import { has_sveltekit_library } from "./sveltekit_helpers.js";
|
|
9
10
|
import { update_changelog } from "./changelog.js";
|
|
10
11
|
import { load_from_env } from "./env.js";
|
|
11
|
-
import { Git_Branch, Git_Origin, git_check_clean_workspace, git_checkout, git_fetch, git_pull, } from "./git.js";
|
|
12
12
|
import { CHANGESET_CLI } from "./changeset_helpers.js";
|
|
13
13
|
export const Args = z.strictObject({
|
|
14
14
|
branch: Git_Branch.describe('branch to publish from').default('main'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resolve_specifier.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/resolve_specifier.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"resolve_specifier.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/resolve_specifier.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,wBAAwB,CAAC;AAMpD,MAAM,WAAW,kBAAkB;IAClC;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,wBAAwB,EAAE,MAAM,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,SAAS,EAAE,SAAS,GAAG,4BAA4B,GAAG,4BAA4B,CAAC;IACnF,GAAG,EAAE,OAAO,CAAC;CACb;AAED;;;;GAIG;AACH,eAAO,MAAM,iBAAiB,GAAI,WAAW,MAAM,EAAE,KAAK,MAAM,KAAG,kBAgDlE,CAAC"}
|
package/dist/search_fs.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { File_Filter, Resolved_Path, Path_Filter } from '
|
|
1
|
+
import type { File_Filter, Resolved_Path, Path_Filter } from '@ryanatkn/belt/path.js';
|
|
2
2
|
export interface Search_Fs_Options {
|
|
3
3
|
/**
|
|
4
4
|
* One or more filter functions, any of which can short-circuit the search by returning `false`.
|
package/dist/search_fs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search_fs.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/search_fs.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"search_fs.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/search_fs.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAC,WAAW,EAAE,aAAa,EAAE,WAAW,EAAC,MAAM,wBAAwB,CAAC;AAEpF,MAAM,WAAW,iBAAiB;IACjC;;OAEG;IACH,MAAM,CAAC,EAAE,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC;IAC1C;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC;IAC/C;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,GAAG,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,CAAC,EAAE,aAAa,KAAK,MAAM,CAAC,CAAC;IACzE;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACpB;AAED,eAAO,MAAM,SAAS,GACrB,KAAK,MAAM,EACX,UAAS,iBAAgC,KACvC,KAAK,CAAC,aAAa,CAwBrB,CAAC;AAmCF,eAAO,MAAM,wBAAwB,GAAI,OAAO,KAAK,CAAC,MAAM,CAAC,KAAG,MAAM,GAAG,IAOxE,CAAC"}
|
package/dist/task.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import type { Logger } from '@ryanatkn/belt/log.js';
|
|
|
2
2
|
import type { z } from 'zod';
|
|
3
3
|
import type { Timings } from '@ryanatkn/belt/timings.js';
|
|
4
4
|
import type { Result } from '@ryanatkn/belt/result.js';
|
|
5
|
+
import type { Path_Id } from '@ryanatkn/belt/path.js';
|
|
5
6
|
import type { Args } from './args.ts';
|
|
6
|
-
import type { Path_Id } from './path.ts';
|
|
7
7
|
import type { Gro_Config } from './gro_config.ts';
|
|
8
8
|
import type { Parsed_Svelte_Config } from './svelte_config.ts';
|
|
9
9
|
import { type Input_Path, type Resolved_Input_File, type Resolved_Input_Path } from './input_path.ts';
|
package/dist/task.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/task.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,uBAAuB,CAAC;AAElD,OAAO,KAAK,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAC3B,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,2BAA2B,CAAC;AAEvD,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"task.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/task.ts"],"names":[],"mappings":"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"}
|
package/dist/test.task.js
CHANGED
|
@@ -3,7 +3,7 @@ import { spawn_cli } from '@ryanatkn/gro/cli.js';
|
|
|
3
3
|
import { Task_Error } from "./task.js";
|
|
4
4
|
import { find_cli } from "./cli.js";
|
|
5
5
|
import { has_dep } from "./package_json.js";
|
|
6
|
-
import { serialize_args,
|
|
6
|
+
import { serialize_args, to_implicit_forwarded_args } from "./args.js";
|
|
7
7
|
import { VITEST_CLI } from "./constants.js";
|
|
8
8
|
import { paths } from "./paths.js";
|
|
9
9
|
export const Args = z.strictObject({
|
|
@@ -39,7 +39,7 @@ export const task = {
|
|
|
39
39
|
if (t) {
|
|
40
40
|
vitest_args.push('-t', t);
|
|
41
41
|
}
|
|
42
|
-
vitest_args.push(...serialize_args(
|
|
42
|
+
vitest_args.push(...serialize_args(to_implicit_forwarded_args(VITEST_CLI)));
|
|
43
43
|
const spawned = await spawn_cli(VITEST_CLI, vitest_args);
|
|
44
44
|
if (!spawned?.ok) {
|
|
45
45
|
throw new Task_Error(`vitest failed with exit code ${spawned?.code}`);
|
package/dist/upgrade.task.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { type Task } from './task.ts';
|
|
|
3
3
|
export declare const Args: z.ZodObject<{
|
|
4
4
|
_: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
5
5
|
only: z.ZodPipe<z.ZodDefault<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>, z.ZodTransform<string[], string | string[]>>;
|
|
6
|
-
origin:
|
|
6
|
+
origin: any;
|
|
7
7
|
force: z.ZodDefault<z.ZodBoolean>;
|
|
8
8
|
pull: z.ZodDefault<z.ZodBoolean>;
|
|
9
9
|
'no-pull': z.ZodDefault<z.ZodBoolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"upgrade.task.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/upgrade.task.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"upgrade.task.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/upgrade.task.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAItB,OAAO,EAAa,KAAK,IAAI,EAAC,MAAM,WAAW,CAAC;AAMhD,eAAO,MAAM,IAAI;;;;;;;;;;;;kBAiCf,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,IAAI,CAAC,CAAC;AAExC,eAAO,MAAM,IAAI,EAAE,IAAI,CAAC,IAAI,CA4E3B,CAAC"}
|
package/dist/upgrade.task.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { spawn } from '@ryanatkn/belt/process.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { rmSync } from 'node:fs';
|
|
4
|
+
import { Git_Origin, git_pull } from '@ryanatkn/belt/git.js';
|
|
4
5
|
import { Task_Error } from "./task.js";
|
|
5
6
|
import { extract_deps, load_package_json } from "./package_json.js";
|
|
6
|
-
import { Git_Origin, git_pull } from "./git.js";
|
|
7
7
|
import { spawn_cli } from "./cli.js";
|
|
8
8
|
import { serialize_args, to_forwarded_args } from "./args.js";
|
|
9
9
|
import { NODE_MODULES_DIRNAME } from "./constants.js";
|
package/dist/watch_dir.d.ts
CHANGED
package/dist/watch_dir.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"watch_dir.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/watch_dir.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,eAAe,EAAkB,KAAK,OAAO,EAAC,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"watch_dir.d.ts","sourceRoot":"../src/lib/","sources":["../src/lib/watch_dir.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,eAAe,EAAkB,KAAK,OAAO,EAAC,MAAM,UAAU,CAAC;AAInF,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,wBAAwB,CAAC;AAOxD,MAAM,WAAW,aAAa;IAC7B,IAAI,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IAC1B,KAAK,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC3B;AAED,MAAM,WAAW,cAAc;IAC9B,IAAI,EAAE,mBAAmB,CAAC;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,OAAO,CAAC;CACtB;AACD,MAAM,MAAM,mBAAmB,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAC9D,MAAM,MAAM,uBAAuB,GAAG,CAAC,MAAM,EAAE,cAAc,KAAK,IAAI,CAAC;AAEvE,MAAM,WAAW,iBAAiB;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,uBAAuB,CAAC;IACnC,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC,QAAQ,CAAC,EAAE,eAAe,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CACzB;AAED;;GAEG;AACH,eAAO,MAAM,SAAS,GAAI,0DAOvB,iBAAiB,KAAG,aA+CtB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ryanatkn/gro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.169.1",
|
|
4
4
|
"description": "task runner and toolkit extending SvelteKit",
|
|
5
5
|
"motto": "generate, run, optimize",
|
|
6
6
|
"glyph": "🌰",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"typescript"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@ryanatkn/belt": "^0.
|
|
52
|
+
"@ryanatkn/belt": "^0.35.1",
|
|
53
53
|
"chokidar": "^4.0.3",
|
|
54
54
|
"dotenv": "^17.2.2",
|
|
55
55
|
"esm-env": "^1.2.2",
|
|
@@ -134,6 +134,10 @@
|
|
|
134
134
|
"./*.js": {
|
|
135
135
|
"types": "./dist/*.d.ts",
|
|
136
136
|
"default": "./dist/*.js"
|
|
137
|
+
},
|
|
138
|
+
"./*.ts": {
|
|
139
|
+
"types": "./dist/*.d.ts",
|
|
140
|
+
"default": "./dist/*.js"
|
|
137
141
|
}
|
|
138
142
|
}
|
|
139
143
|
}
|
package/src/lib/args.ts
CHANGED
|
@@ -9,7 +9,7 @@ import type {z} from 'zod';
|
|
|
9
9
|
* unless `invoke_task` is called with modified args.
|
|
10
10
|
* Upstream tasks can use listeners to respond to downstream events and values.
|
|
11
11
|
* It's a beautiful mutable spaghetti mess. cant get enough
|
|
12
|
-
* The raw CLI
|
|
12
|
+
* The raw CLI args are handled by `mri` - https://github.com/lukeed/mri
|
|
13
13
|
*/
|
|
14
14
|
export interface Args {
|
|
15
15
|
_?: Array<string>;
|
|
@@ -165,6 +165,37 @@ export const to_forwarded_args_by_command = (
|
|
|
165
165
|
return forwarded_args_by_command;
|
|
166
166
|
};
|
|
167
167
|
|
|
168
|
+
/**
|
|
169
|
+
* Gets all args after the first `--` without assuming a command name.
|
|
170
|
+
* This is useful for tasks that want to forward args directly to a tool
|
|
171
|
+
* without requiring users to specify the tool name explicitly.
|
|
172
|
+
* Optionally strips a specific command name if present for backward compatibility.
|
|
173
|
+
* @example
|
|
174
|
+
* ```ts
|
|
175
|
+
* // `gro test -- --watch` → {watch: true}
|
|
176
|
+
* // `gro test -- foo.test.ts` → {_: ['foo.test.ts']}
|
|
177
|
+
* // `gro test -- vitest --watch` with command_to_strip='vitest' → {watch: true}
|
|
178
|
+
* to_implicit_forwarded_args('vitest')
|
|
179
|
+
* ```
|
|
180
|
+
*/
|
|
181
|
+
export const to_implicit_forwarded_args = (
|
|
182
|
+
command_to_strip?: string,
|
|
183
|
+
raw_rest_args = to_raw_rest_args(),
|
|
184
|
+
): Args => {
|
|
185
|
+
const start = raw_rest_args.indexOf('--');
|
|
186
|
+
if (start === -1) return {};
|
|
187
|
+
|
|
188
|
+
let argv = raw_rest_args.slice(start + 1);
|
|
189
|
+
|
|
190
|
+
if (command_to_strip && argv[0] === command_to_strip) {
|
|
191
|
+
argv = argv.slice(1);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
const args = mri(argv);
|
|
195
|
+
if (!args._.length) delete (args as Args)._;
|
|
196
|
+
return args;
|
|
197
|
+
};
|
|
198
|
+
|
|
168
199
|
export const print_command_args = (serialized_args: Array<string>): string =>
|
|
169
200
|
st('gray', '[') +
|
|
170
201
|
st('magenta', 'running command') +
|
|
@@ -5,10 +5,14 @@ import type {WrittenConfig} from '@changesets/types';
|
|
|
5
5
|
import {readFile, writeFile} from 'node:fs/promises';
|
|
6
6
|
import {join} from 'node:path';
|
|
7
7
|
import {existsSync, readdirSync} from 'node:fs';
|
|
8
|
+
import {
|
|
9
|
+
Git_Origin,
|
|
10
|
+
git_check_fully_staged_workspace,
|
|
11
|
+
git_push_to_create,
|
|
12
|
+
} from '@ryanatkn/belt/git.js';
|
|
8
13
|
|
|
9
14
|
import {Task_Error, type Task} from './task.ts';
|
|
10
15
|
import {find_cli, spawn_cli} from './cli.ts';
|
|
11
|
-
import {Git_Origin, git_check_fully_staged_workspace, git_push_to_create} from './git.ts';
|
|
12
16
|
import {has_sveltekit_library} from './sveltekit_helpers.ts';
|
|
13
17
|
import {
|
|
14
18
|
CHANGESET_CLI,
|
package/src/lib/check.task.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {z} from 'zod';
|
|
2
2
|
import {spawn} from '@ryanatkn/belt/process.js';
|
|
3
3
|
import {styleText as st} from 'node:util';
|
|
4
|
+
import {git_check_clean_workspace} from '@ryanatkn/belt/git.js';
|
|
4
5
|
|
|
5
6
|
import {Task_Error, type Task} from './task.ts';
|
|
6
|
-
import {git_check_clean_workspace} from './git.ts';
|
|
7
7
|
import {sync_package_json} from './package_json.ts';
|
|
8
8
|
|
|
9
9
|
export const Args = z.strictObject({
|
package/src/lib/clean.task.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {spawn} from '@ryanatkn/belt/process.js';
|
|
2
2
|
import {z} from 'zod';
|
|
3
|
+
import {Git_Origin} from '@ryanatkn/belt/git.js';
|
|
3
4
|
|
|
4
5
|
import type {Task} from './task.ts';
|
|
5
6
|
import {clean_fs} from './clean_fs.ts';
|
|
6
|
-
import {Git_Origin} from './git.ts';
|
|
7
7
|
|
|
8
8
|
export const Args = z.strictObject({
|
|
9
9
|
build_dev: z.boolean().meta({description: 'delete the Gro build dev directory'}).default(false),
|
package/src/lib/cli.ts
CHANGED
|
@@ -9,9 +9,9 @@ import {join} from 'node:path';
|
|
|
9
9
|
import {existsSync} from 'node:fs';
|
|
10
10
|
import {fileURLToPath, type URL} from 'node:url';
|
|
11
11
|
import type {Logger} from '@ryanatkn/belt/log.js';
|
|
12
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
12
13
|
|
|
13
14
|
import {NODE_MODULES_DIRNAME} from './constants.ts';
|
|
14
|
-
import type {Path_Id} from './path.ts';
|
|
15
15
|
import {print_command_args} from './args.ts';
|
|
16
16
|
|
|
17
17
|
// TODO maybe upstream to Belt?
|
package/src/lib/commit.task.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {spawn} from '@ryanatkn/belt/process.js';
|
|
2
2
|
import {z} from 'zod';
|
|
3
|
+
import {Git_Origin, git_current_branch_name, git_push} from '@ryanatkn/belt/git.js';
|
|
3
4
|
|
|
4
5
|
import type {Task} from './task.ts';
|
|
5
|
-
import {Git_Origin, git_current_branch_name, git_push} from './git.ts';
|
|
6
6
|
|
|
7
7
|
export const Args = z.strictObject({
|
|
8
8
|
_: z
|
package/src/lib/deploy.task.ts
CHANGED
|
@@ -5,11 +5,6 @@ import {z} from 'zod';
|
|
|
5
5
|
import {cp, mkdir, rm} from 'node:fs/promises';
|
|
6
6
|
import {join, resolve} from 'node:path';
|
|
7
7
|
import {existsSync, readdirSync} from 'node:fs';
|
|
8
|
-
|
|
9
|
-
import {Task_Error, type Task} from './task.ts';
|
|
10
|
-
import {print_path} from './paths.ts';
|
|
11
|
-
import {GRO_DIRNAME, GIT_DIRNAME, SVELTEKIT_BUILD_DIRNAME} from './constants.ts';
|
|
12
|
-
import {empty_dir} from './fs.ts';
|
|
13
8
|
import {
|
|
14
9
|
git_check_clean_workspace,
|
|
15
10
|
git_checkout,
|
|
@@ -25,7 +20,12 @@ import {
|
|
|
25
20
|
git_check_setting_pull_rebase,
|
|
26
21
|
git_clone_locally,
|
|
27
22
|
git_current_branch_name,
|
|
28
|
-
} from '
|
|
23
|
+
} from '@ryanatkn/belt/git.js';
|
|
24
|
+
|
|
25
|
+
import {Task_Error, type Task} from './task.ts';
|
|
26
|
+
import {print_path} from './paths.ts';
|
|
27
|
+
import {GRO_DIRNAME, GIT_DIRNAME, SVELTEKIT_BUILD_DIRNAME} from './constants.ts';
|
|
28
|
+
import {empty_dir} from './fs.ts';
|
|
29
29
|
|
|
30
30
|
// docs at ./docs/deploy.md
|
|
31
31
|
|
package/src/lib/disknode.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as esbuild from 'esbuild';
|
|
|
2
2
|
import type {Logger} from '@ryanatkn/belt/log.js';
|
|
3
3
|
import {basename} from 'node:path';
|
|
4
4
|
import type {CompileOptions, ModuleCompileOptions, PreprocessorGroup} from 'svelte/compiler';
|
|
5
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
5
6
|
|
|
6
7
|
import {print_build_result, to_define_import_meta_env} from './esbuild_helpers.ts';
|
|
7
8
|
import {resolve_specifier} from './resolve_specifier.ts';
|
|
@@ -11,7 +12,6 @@ import {esbuild_plugin_sveltekit_shim_app} from './esbuild_plugin_sveltekit_shim
|
|
|
11
12
|
import {esbuild_plugin_sveltekit_local_imports} from './esbuild_plugin_sveltekit_local_imports.ts';
|
|
12
13
|
import {esbuild_plugin_svelte} from './esbuild_plugin_svelte.ts';
|
|
13
14
|
import type {Parsed_Svelte_Config} from './svelte_config.ts';
|
|
14
|
-
import type {Path_Id} from './path.ts';
|
|
15
15
|
|
|
16
16
|
export interface Esbuild_Plugin_External_Worker_Options {
|
|
17
17
|
dev: boolean;
|
package/src/lib/filer.ts
CHANGED
|
@@ -7,8 +7,8 @@ import {fileURLToPath, pathToFileURL} from 'node:url';
|
|
|
7
7
|
import {Unreachable_Error} from '@ryanatkn/belt/error.js';
|
|
8
8
|
import type {Logger} from '@ryanatkn/belt/log.js';
|
|
9
9
|
import type {Package_Json} from '@ryanatkn/belt/package_json.js';
|
|
10
|
+
import type {File_Filter, Path_Id} from '@ryanatkn/belt/path.js';
|
|
10
11
|
|
|
11
|
-
import type {File_Filter, Path_Id} from './path.ts';
|
|
12
12
|
import {
|
|
13
13
|
watch_dir,
|
|
14
14
|
type Watch_Node_Fs,
|
package/src/lib/gen.ts
CHANGED
|
@@ -5,9 +5,9 @@ import type {Result} from '@ryanatkn/belt/result.js';
|
|
|
5
5
|
import type {Timings} from '@ryanatkn/belt/timings.js';
|
|
6
6
|
import {styleText as st} from 'node:util';
|
|
7
7
|
import {existsSync} from 'node:fs';
|
|
8
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
8
9
|
|
|
9
10
|
import {print_path} from './paths.ts';
|
|
10
|
-
import type {Path_Id} from './path.ts';
|
|
11
11
|
import type {Gro_Config} from './gro_config.ts';
|
|
12
12
|
import type {Parsed_Svelte_Config} from './svelte_config.ts';
|
|
13
13
|
import {load_modules, type Load_Modules_Failure, type Module_Meta} from './modules.ts';
|
package/src/lib/gen_helpers.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {resolve} from 'node:path';
|
|
2
2
|
import type {Logger} from '@ryanatkn/belt/log.js';
|
|
3
3
|
import type {Timings} from '@ryanatkn/belt/timings.js';
|
|
4
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
4
5
|
|
|
5
6
|
import type {Gro_Config} from './gro_config.ts';
|
|
6
7
|
import {filter_dependents, type Filer} from './filer.ts';
|
|
@@ -14,7 +15,6 @@ import {
|
|
|
14
15
|
} from './gen.ts';
|
|
15
16
|
import {default_svelte_config} from './svelte_config.ts';
|
|
16
17
|
import {to_root_path} from './paths.ts';
|
|
17
|
-
import type {Path_Id} from './path.ts';
|
|
18
18
|
import {load_module} from './modules.ts';
|
|
19
19
|
|
|
20
20
|
/**
|
package/src/lib/gro_config.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {join, resolve} from 'node:path';
|
|
2
2
|
import {existsSync} from 'node:fs';
|
|
3
3
|
import {identity} from '@ryanatkn/belt/function.js';
|
|
4
|
+
import type {Path_Filter, Path_Id} from '@ryanatkn/belt/path.js';
|
|
4
5
|
|
|
5
6
|
import {GRO_DIST_DIR, IS_THIS_GRO, paths} from './paths.ts';
|
|
6
7
|
import {
|
|
@@ -15,7 +16,6 @@ import {
|
|
|
15
16
|
import create_default_config from './gro.config.default.ts';
|
|
16
17
|
import type {Create_Config_Plugins} from './plugin.ts';
|
|
17
18
|
import type {Map_Package_Json} from './package_json.ts';
|
|
18
|
-
import type {Path_Filter, Path_Id} from './path.ts';
|
|
19
19
|
import type {Parsed_Svelte_Config} from './svelte_config.ts';
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -7,10 +7,10 @@ import {strip_before, strip_end} from '@ryanatkn/belt/string.js';
|
|
|
7
7
|
import type {Result} from '@ryanatkn/belt/result.js';
|
|
8
8
|
import {existsSync} from 'node:fs';
|
|
9
9
|
import {throttle} from '@ryanatkn/belt/throttle.js';
|
|
10
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
10
11
|
|
|
11
12
|
import type {Plugin} from './plugin.ts';
|
|
12
13
|
import {base_path_to_path_id, LIB_DIRNAME, paths} from './paths.ts';
|
|
13
|
-
import type {Path_Id} from './path.ts';
|
|
14
14
|
import {GRO_DEV_DIRNAME, SERVER_DIST_PATH} from './constants.ts';
|
|
15
15
|
import {parse_svelte_config, default_svelte_config} from './svelte_config.ts';
|
|
16
16
|
import {esbuild_plugin_sveltekit_shim_app} from './esbuild_plugin_sveltekit_shim_app.ts';
|
package/src/lib/input_path.ts
CHANGED
|
@@ -3,9 +3,9 @@ import {existsSync, statSync} from 'node:fs';
|
|
|
3
3
|
import {strip_start} from '@ryanatkn/belt/string.js';
|
|
4
4
|
import {z} from 'zod';
|
|
5
5
|
import type {Flavored} from '@ryanatkn/belt/types.js';
|
|
6
|
+
import type {Path_Info, Path_Id, Resolved_Path} from '@ryanatkn/belt/path.js';
|
|
6
7
|
|
|
7
8
|
import {GRO_PACKAGE_DIR, GRO_DIST_DIR} from './paths.ts';
|
|
8
|
-
import type {Path_Info, Path_Id, Resolved_Path} from './path.ts';
|
|
9
9
|
import {search_fs} from './search_fs.ts';
|
|
10
10
|
import {TASK_FILE_SUFFIX_JS} from './task.ts';
|
|
11
11
|
|
package/src/lib/modules.ts
CHANGED
|
@@ -3,10 +3,10 @@ import {Unreachable_Error} from '@ryanatkn/belt/error.js';
|
|
|
3
3
|
import type {Result} from '@ryanatkn/belt/result.js';
|
|
4
4
|
import {print_error} from '@ryanatkn/belt/print.js';
|
|
5
5
|
import {pathToFileURL} from 'node:url';
|
|
6
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
6
7
|
|
|
7
8
|
import type {Resolved_Input_File} from './input_path.ts';
|
|
8
9
|
import {print_path} from './paths.ts';
|
|
9
|
-
import type {Path_Id} from './path.ts';
|
|
10
10
|
|
|
11
11
|
export interface Module_Meta<T_Module extends Record<string, any> = Record<string, any>> {
|
|
12
12
|
id: Path_Id;
|
package/src/lib/package.ts
CHANGED
|
@@ -5,7 +5,7 @@ import type {Src_Json} from '@ryanatkn/belt/src_json.js';
|
|
|
5
5
|
|
|
6
6
|
export const package_json: Package_Json = {
|
|
7
7
|
name: '@ryanatkn/gro',
|
|
8
|
-
version: '0.
|
|
8
|
+
version: '0.169.1',
|
|
9
9
|
description: 'task runner and toolkit extending SvelteKit',
|
|
10
10
|
motto: 'generate, run, optimize',
|
|
11
11
|
glyph: '🌰',
|
|
@@ -44,7 +44,7 @@ export const package_json: Package_Json = {
|
|
|
44
44
|
'typescript',
|
|
45
45
|
],
|
|
46
46
|
dependencies: {
|
|
47
|
-
'@ryanatkn/belt': '^0.
|
|
47
|
+
'@ryanatkn/belt': '^0.35.1',
|
|
48
48
|
chokidar: '^4.0.3',
|
|
49
49
|
dotenv: '^17.2.2',
|
|
50
50
|
'esm-env': '^1.2.2',
|
|
@@ -99,12 +99,13 @@ export const package_json: Package_Json = {
|
|
|
99
99
|
'./package.json': './package.json',
|
|
100
100
|
'.': {types: './dist/index.d.ts', default: './dist/index.js'},
|
|
101
101
|
'./*.js': {types: './dist/*.d.ts', default: './dist/*.js'},
|
|
102
|
+
'./*.ts': {types: './dist/*.d.ts', default: './dist/*.js'},
|
|
102
103
|
},
|
|
103
104
|
} as any;
|
|
104
105
|
|
|
105
106
|
export const src_json: Src_Json = {
|
|
106
107
|
name: '@ryanatkn/gro',
|
|
107
|
-
version: '0.
|
|
108
|
+
version: '0.169.1',
|
|
108
109
|
modules: {
|
|
109
110
|
'.': {
|
|
110
111
|
path: 'index.ts',
|
|
@@ -133,6 +134,7 @@ export const src_json: Src_Json = {
|
|
|
133
134
|
{name: 'to_raw_rest_args', kind: 'function'},
|
|
134
135
|
{name: 'to_forwarded_args', kind: 'function'},
|
|
135
136
|
{name: 'to_forwarded_args_by_command', kind: 'function'},
|
|
137
|
+
{name: 'to_implicit_forwarded_args', kind: 'function'},
|
|
136
138
|
{name: 'print_command_args', kind: 'function'},
|
|
137
139
|
],
|
|
138
140
|
},
|
|
@@ -401,30 +403,6 @@ export const src_json: Src_Json = {
|
|
|
401
403
|
{name: 'normalize_gen_config', kind: 'function'},
|
|
402
404
|
],
|
|
403
405
|
},
|
|
404
|
-
'./git.js': {
|
|
405
|
-
path: 'git.ts',
|
|
406
|
-
declarations: [
|
|
407
|
-
{name: 'Git_Origin', kind: 'variable'},
|
|
408
|
-
{name: 'Git_Branch', kind: 'variable'},
|
|
409
|
-
{name: 'git_current_branch_name', kind: 'function'},
|
|
410
|
-
{name: 'git_remote_branch_exists', kind: 'function'},
|
|
411
|
-
{name: 'git_local_branch_exists', kind: 'function'},
|
|
412
|
-
{name: 'git_check_clean_workspace', kind: 'function'},
|
|
413
|
-
{name: 'git_check_fully_staged_workspace', kind: 'function'},
|
|
414
|
-
{name: 'git_fetch', kind: 'function'},
|
|
415
|
-
{name: 'git_checkout', kind: 'function'},
|
|
416
|
-
{name: 'git_pull', kind: 'function'},
|
|
417
|
-
{name: 'git_push', kind: 'function'},
|
|
418
|
-
{name: 'git_push_to_create', kind: 'function'},
|
|
419
|
-
{name: 'git_delete_local_branch', kind: 'function'},
|
|
420
|
-
{name: 'git_delete_remote_branch', kind: 'function'},
|
|
421
|
-
{name: 'git_reset_branch_to_first_commit', kind: 'function'},
|
|
422
|
-
{name: 'git_current_commit_hash', kind: 'function'},
|
|
423
|
-
{name: 'git_current_branch_first_commit_hash', kind: 'function'},
|
|
424
|
-
{name: 'git_check_setting_pull_rebase', kind: 'function'},
|
|
425
|
-
{name: 'git_clone_locally', kind: 'function'},
|
|
426
|
-
],
|
|
427
|
-
},
|
|
428
406
|
'./github.js': {
|
|
429
407
|
path: 'github.ts',
|
|
430
408
|
declarations: [
|
|
@@ -614,17 +592,6 @@ export const src_json: Src_Json = {
|
|
|
614
592
|
{name: 'parse_imports', kind: 'function'},
|
|
615
593
|
],
|
|
616
594
|
},
|
|
617
|
-
'./path.js': {
|
|
618
|
-
path: 'path.ts',
|
|
619
|
-
declarations: [
|
|
620
|
-
{name: 'Path_Id', kind: 'type'},
|
|
621
|
-
{name: 'Path_Info', kind: 'type'},
|
|
622
|
-
{name: 'Resolved_Path', kind: 'type'},
|
|
623
|
-
{name: 'Path_Filter', kind: 'type'},
|
|
624
|
-
{name: 'File_Filter', kind: 'type'},
|
|
625
|
-
{name: 'to_file_path', kind: 'function'},
|
|
626
|
-
],
|
|
627
|
-
},
|
|
628
595
|
'./paths.js': {
|
|
629
596
|
path: 'paths.ts',
|
|
630
597
|
declarations: [
|
package/src/lib/package_json.ts
CHANGED
|
@@ -145,6 +145,10 @@ export const to_package_exports = (paths: Array<string>): Package_Json_Exports =
|
|
|
145
145
|
types: IMPORT_PREFIX + '*.d.ts',
|
|
146
146
|
default: IMPORT_PREFIX + '*.js',
|
|
147
147
|
};
|
|
148
|
+
exports['./*.ts'] = {
|
|
149
|
+
types: IMPORT_PREFIX + '*.d.ts',
|
|
150
|
+
default: IMPORT_PREFIX + '*.js',
|
|
151
|
+
};
|
|
148
152
|
}
|
|
149
153
|
|
|
150
154
|
if (has_svelte) {
|
package/src/lib/parse_exports.ts
CHANGED
|
@@ -3,8 +3,8 @@ import {extname} from 'node:path';
|
|
|
3
3
|
import type {Flavored} from '@ryanatkn/belt/types.js';
|
|
4
4
|
import type {Logger} from '@ryanatkn/belt/log.js';
|
|
5
5
|
import type {Src_Module_Declaration_Kind} from '@ryanatkn/belt/src_json.js';
|
|
6
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
6
7
|
|
|
7
|
-
import type {Path_Id} from './path.ts';
|
|
8
8
|
import {TS_MATCHER} from './constants.ts';
|
|
9
9
|
import {Parse_Exports_Context} from './parse_exports_context.ts';
|
|
10
10
|
|
package/src/lib/parse_imports.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {parseSync, type ImportDeclaration} from 'oxc-parser';
|
|
2
2
|
import type {Flavored} from '@ryanatkn/belt/types.js';
|
|
3
3
|
import {Unreachable_Error} from '@ryanatkn/belt/error.js';
|
|
4
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
4
5
|
|
|
5
|
-
import type {Path_Id} from './path.ts';
|
|
6
6
|
import {JS_MATCHER, TS_MATCHER, SVELTE_MATCHER, SVELTE_SCRIPT_MATCHER} from './constants.ts';
|
|
7
7
|
|
|
8
8
|
export type Import_Specifier = Flavored<string, 'Import_Specifier'>;
|
package/src/lib/paths.ts
CHANGED
|
@@ -2,6 +2,7 @@ import {join, extname, relative, basename} from 'node:path';
|
|
|
2
2
|
import {fileURLToPath} from 'node:url';
|
|
3
3
|
import {ensure_end, strip_end} from '@ryanatkn/belt/string.js';
|
|
4
4
|
import {styleText as st} from 'node:util';
|
|
5
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
5
6
|
|
|
6
7
|
import {
|
|
7
8
|
GRO_CONFIG_FILENAME,
|
|
@@ -11,7 +12,6 @@ import {
|
|
|
11
12
|
SVELTEKIT_DIST_DIRNAME,
|
|
12
13
|
} from './constants.ts';
|
|
13
14
|
import {default_svelte_config} from './svelte_config.ts';
|
|
14
|
-
import type {Path_Id} from './path.ts';
|
|
15
15
|
|
|
16
16
|
/*
|
|
17
17
|
|
package/src/lib/publish.task.ts
CHANGED
|
@@ -2,13 +2,6 @@ import {spawn} from '@ryanatkn/belt/process.js';
|
|
|
2
2
|
import {z} from 'zod';
|
|
3
3
|
import {styleText as st} from 'node:util';
|
|
4
4
|
import {existsSync} from 'node:fs';
|
|
5
|
-
|
|
6
|
-
import {Task_Error, type Task} from './task.ts';
|
|
7
|
-
import {load_package_json, parse_repo_url} from './package_json.ts';
|
|
8
|
-
import {find_cli, spawn_cli} from './cli.ts';
|
|
9
|
-
import {has_sveltekit_library} from './sveltekit_helpers.ts';
|
|
10
|
-
import {update_changelog} from './changelog.ts';
|
|
11
|
-
import {load_from_env} from './env.ts';
|
|
12
5
|
import {
|
|
13
6
|
Git_Branch,
|
|
14
7
|
Git_Origin,
|
|
@@ -16,7 +9,14 @@ import {
|
|
|
16
9
|
git_checkout,
|
|
17
10
|
git_fetch,
|
|
18
11
|
git_pull,
|
|
19
|
-
} from '
|
|
12
|
+
} from '@ryanatkn/belt/git.js';
|
|
13
|
+
|
|
14
|
+
import {Task_Error, type Task} from './task.ts';
|
|
15
|
+
import {load_package_json, parse_repo_url} from './package_json.ts';
|
|
16
|
+
import {find_cli, spawn_cli} from './cli.ts';
|
|
17
|
+
import {has_sveltekit_library} from './sveltekit_helpers.ts';
|
|
18
|
+
import {update_changelog} from './changelog.ts';
|
|
19
|
+
import {load_from_env} from './env.ts';
|
|
20
20
|
import {CHANGESET_CLI} from './changeset_helpers.ts';
|
|
21
21
|
|
|
22
22
|
export const Args = z.strictObject({
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {extname, isAbsolute, join, relative} from 'node:path';
|
|
2
2
|
import {existsSync} from 'node:fs';
|
|
3
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
3
4
|
|
|
4
5
|
import {replace_extension} from './paths.ts';
|
|
5
|
-
import type {Path_Id} from './path.ts';
|
|
6
6
|
|
|
7
7
|
// TODO ideally this module doesnt exist, but import.meta.resolve doesn't work in loaders last I tried
|
|
8
8
|
|
package/src/lib/search_fs.ts
CHANGED
|
@@ -3,8 +3,7 @@ import {to_array} from '@ryanatkn/belt/array.js';
|
|
|
3
3
|
import {ensure_end} from '@ryanatkn/belt/string.js';
|
|
4
4
|
import {isAbsolute, join} from 'node:path';
|
|
5
5
|
import {existsSync, readdirSync} from 'node:fs';
|
|
6
|
-
|
|
7
|
-
import type {File_Filter, Resolved_Path, Path_Filter} from './path.ts';
|
|
6
|
+
import type {File_Filter, Resolved_Path, Path_Filter} from '@ryanatkn/belt/path.js';
|
|
8
7
|
|
|
9
8
|
export interface Search_Fs_Options {
|
|
10
9
|
/**
|
package/src/lib/task.ts
CHANGED
|
@@ -5,9 +5,9 @@ import type {Timings} from '@ryanatkn/belt/timings.js';
|
|
|
5
5
|
import {styleText as st} from 'node:util';
|
|
6
6
|
import type {Result} from '@ryanatkn/belt/result.js';
|
|
7
7
|
import {isAbsolute, join, relative} from 'node:path';
|
|
8
|
+
import type {Path_Id} from '@ryanatkn/belt/path.js';
|
|
8
9
|
|
|
9
10
|
import type {Args} from './args.ts';
|
|
10
|
-
import type {Path_Id} from './path.ts';
|
|
11
11
|
import type {Gro_Config} from './gro_config.ts';
|
|
12
12
|
import type {Parsed_Svelte_Config} from './svelte_config.ts';
|
|
13
13
|
import {
|