Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
006acf396a chore(deps): update pnpm to v10.27.0 2025-12-30 22:37:46 +00:00
4 changed files with 7 additions and 7 deletions

View File

@@ -43,7 +43,7 @@
"#bootstrap/*": "./src/bootstrap/*",
"#utils/*": "./src/utils/*"
},
"packageManager": "pnpm@10.17.1",
"packageManager": "pnpm@10.27.0",
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3"

View File

@@ -31,11 +31,11 @@ class BootstrapService {
public ensure = async () => {
await this.namespaces.ensure();
// await this.repos.ensure();
await this.repos.ensure();
// await this.releases.ensure();
// await this.cloudflareTunnel.ensure({
// spec: {},
//});
await this.cloudflareTunnel.ensure({
spec: {},
});
};
}

View File

@@ -8,7 +8,7 @@ import { homelab } from '#resources/homelab/homelab.ts';
const services = new Services();
const resourceService = services.get(ResourceService);
// await resourceService.install(...Object.values(homelab));
await resourceService.install(...Object.values(homelab));
await resourceService.register(...Object.values(resources));
const bootstrapService = services.get(BootstrapService);

View File

@@ -11,7 +11,7 @@ const resources = {
...flux,
...certManager,
...istio,
// ...homelab,
...homelab,
} satisfies Record<string, ResourceClass<ExpectedAny>>;
export { resources };