Skip to content

Commit

Permalink
Merge pull request #17 from RealityAnomaly/bb010g/fix-consistent-casing
Browse files Browse the repository at this point in the history
[1/1] fix!: consistent casing
  • Loading branch information
RealityAnomaly authored Dec 11, 2024
2 parents 9d88618 + adf9eb1 commit c7e4947
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 App.run(ArchitectK8SProject);
await App.run(ArchitectK8sProject);
};

0 comments on commit c7e4947

Please sign in to comment.