Problem: the hexagonal refactor churns the backend tree for nine more phases; the UI delivery stack (web/ SPA, cmd/desktop Wails wrapper, compose/web image) must move to its own repo first so doc/layout rewrites land once on a backend-only tree. Change: - New repo git.hubris.network/dtoro/oikos-web (v0.33.0): web/, desktop/ (updateURL repointed to oikos-web releases), compose/, own CI (web + desktop jobs), own deploy script (CI-green gate, TOCTOU guard, version-tagged images, prune-to-3), own webhook receiver on :9798 + launchd unit, own compose project publishing the same 8091:80. - Cutover executed on mac-mini in order: oikos stack's web service stopped+removed, oikos-web project brought up on 8091; outer Caddy untouched (targets the published port) — serving + Authentik flow + /wails 404 quirk verified post-cutover. - Stripped from oikos: web/, cmd/desktop/, compose/web/, desktop CI workflow, ci.yml web job, Makefile ui/desktop/desktop-package/install targets, the compose web service, oikos-web from deploy.sh's fallback prune list; wails + go-keyring dropped from go.mod, vendor synced. - README / CONTRIBUTING / AGENTS.md / .agents dev+operations docs now point at the new repo; mbse + mascot design docs carry a path note. Risk: production SPA serving depends on the new pipeline now; rollback is versioned-image re-up of the old web service from a pre-split checkout (port 8091). Desktop builds installed before the split still check dtoro/oikos releases — one manual reinstall, noted in the oikos-web release notes. Verification: go vet, make test (race), make generate-check, golangci (no new findings; baseline down 400→365); post-cutover curls — localhost:8091 200, /wails/runtime.js 404, outer Caddy 302 Authentik.
118 lines
3.3 KiB
TypeScript
118 lines
3.3 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
interface Colors {
|
|
comment: {
|
|
close: string;
|
|
open: string;
|
|
};
|
|
content: {
|
|
close: string;
|
|
open: string;
|
|
};
|
|
prop: {
|
|
close: string;
|
|
open: string;
|
|
};
|
|
tag: {
|
|
close: string;
|
|
open: string;
|
|
};
|
|
value: {
|
|
close: string;
|
|
open: string;
|
|
};
|
|
}
|
|
type Indent = (arg0: string) => string;
|
|
type Refs = Array<unknown>;
|
|
type Print = (arg0: unknown) => string;
|
|
type Theme = Required<{
|
|
comment?: string;
|
|
content?: string;
|
|
prop?: string;
|
|
tag?: string;
|
|
value?: string;
|
|
}>;
|
|
type CompareKeys = ((a: string, b: string) => number) | null | undefined;
|
|
type RequiredOptions = Required<PrettyFormatOptions>;
|
|
interface Options extends Omit<RequiredOptions, 'compareKeys' | 'theme'> {
|
|
compareKeys: CompareKeys;
|
|
theme: Theme;
|
|
}
|
|
interface PrettyFormatOptions {
|
|
callToJSON?: boolean;
|
|
escapeRegex?: boolean;
|
|
escapeString?: boolean;
|
|
highlight?: boolean;
|
|
indent?: number;
|
|
maxDepth?: number;
|
|
maxWidth?: number;
|
|
min?: boolean;
|
|
printBasicPrototype?: boolean;
|
|
printFunctionName?: boolean;
|
|
compareKeys?: CompareKeys;
|
|
plugins?: Plugins;
|
|
}
|
|
type OptionsReceived = PrettyFormatOptions;
|
|
interface Config {
|
|
callToJSON: boolean;
|
|
compareKeys: CompareKeys;
|
|
colors: Colors;
|
|
escapeRegex: boolean;
|
|
escapeString: boolean;
|
|
indent: string;
|
|
maxDepth: number;
|
|
maxWidth: number;
|
|
min: boolean;
|
|
plugins: Plugins;
|
|
printBasicPrototype: boolean;
|
|
printFunctionName: boolean;
|
|
spacingInner: string;
|
|
spacingOuter: string;
|
|
}
|
|
type Printer = (val: unknown, config: Config, indentation: string, depth: number, refs: Refs, hasCalledToJSON?: boolean) => string;
|
|
type Test = (arg0: any) => boolean;
|
|
interface NewPlugin {
|
|
serialize: (val: any, config: Config, indentation: string, depth: number, refs: Refs, printer: Printer) => string;
|
|
test: Test;
|
|
}
|
|
interface PluginOptions {
|
|
edgeSpacing: string;
|
|
min: boolean;
|
|
spacing: string;
|
|
}
|
|
interface OldPlugin {
|
|
print: (val: unknown, print: Print, indent: Indent, options: PluginOptions, colors: Colors) => string;
|
|
test: Test;
|
|
}
|
|
type Plugin = NewPlugin | OldPlugin;
|
|
type Plugins = Array<Plugin>;
|
|
|
|
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
declare const DEFAULT_OPTIONS: Options;
|
|
/**
|
|
* Returns a presentation string of your `val` object
|
|
* @param val any potential JavaScript object
|
|
* @param options Custom settings
|
|
*/
|
|
declare function format(val: unknown, options?: OptionsReceived): string;
|
|
declare const plugins: {
|
|
AsymmetricMatcher: NewPlugin;
|
|
DOMCollection: NewPlugin;
|
|
DOMElement: NewPlugin;
|
|
Immutable: NewPlugin;
|
|
ReactElement: NewPlugin;
|
|
ReactTestComponent: NewPlugin;
|
|
};
|
|
|
|
export { type Colors, type CompareKeys, type Config, DEFAULT_OPTIONS, type NewPlugin, type OldPlugin, type Options, type OptionsReceived, type Plugin, type Plugins, type PrettyFormatOptions, type Printer, type Refs, type Theme, format, plugins };
|