We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c201b commit c8c0d0bCopy full SHA for c8c0d0b
packages/metadata/src/plugin.ts
@@ -24,7 +24,7 @@ export class MetadataPlugin implements Plugin {
24
25
this.manager = new MetadataManager({
26
rootDir,
27
- watch: this.options.watch,
+ watch: this.options.watch ?? true,
28
formats: ['yaml', 'json', 'typescript', 'javascript']
29
});
30
}
@@ -56,7 +56,7 @@ export class MetadataPlugin implements Plugin {
56
ctx.logger.info(`Loaded ${items.length} ${type}`);
57
58
// Helper: Register with ObjectQL Registry
59
- const ql = ctx.getService('objectql');
+ const ql = ctx.getService('objectql') as any;
60
if (ql && ql.registry) {
61
items.forEach((item: any) => {
62
// Determine key field (id or name)
0 commit comments