Skip to content

Commit

Permalink
fix!: consistent casing
Browse files Browse the repository at this point in the history
  • Loading branch information
bb010g committed Dec 11, 2024
1 parent 474d1ab commit 08d1e1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/architect-k8s/src/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import model from './../architect.json' with { type: 'json' };
import { K8sPlugin } from "./plugin.mts";

@Project.decorate(model)
export class ArchitectK8SProject extends Project {
export class ArchitectK8sProject extends Project {
public override get plugins(): PluginClass[] {
return [K8sPlugin, ...super.plugins];
}
Expand All @@ -26,5 +26,5 @@ export class ArchitectK8SProject extends Project {
};

if (import.meta.main) {
await Project.run(ArchitectK8SProject);
await Project.run(ArchitectK8sProject);
};

0 comments on commit 08d1e1d

Please sign in to comment.