Files
start-os/sdk/package/lib/test/output.sdk.ts
Aiden McClelland 855c1f1b07 style(sdk): apply prettier with single quotes
Run prettier across sdk/base and sdk/package to apply the
standardized quote style (single quotes matching web).
2026-02-05 13:34:01 -07:00

50 lines
1.1 KiB
TypeScript

import { StartSdk } from '../StartSdk'
import { setupManifest } from '../manifest/setupManifest'
import { VersionGraph } from '../version/VersionGraph'
export type Manifest = any
export const sdk = StartSdk.of()
.withManifest(
setupManifest({
id: 'testOutput',
title: '',
license: '',
wrapperRepo: '',
upstreamRepo: '',
supportSite: '',
marketingSite: '',
donationUrl: null,
docsUrl: '',
description: {
short: '',
long: '',
},
images: {
main: {
source: {
dockerTag: 'start9/hello-world',
},
arch: ['aarch64', 'x86_64'],
emulateMissingAs: 'aarch64',
},
},
volumes: [],
alerts: {
install: null,
update: null,
uninstall: null,
restore: null,
start: null,
stop: null,
},
dependencies: {
'remote-test': {
description: '',
optional: false,
s9pk: 'https://example.com/remote-test.s9pk',
},
},
}),
)
.build(true)