We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7367365 commit 4186c22Copy full SHA for 4186c22
src/command/serve/cmd.ts
@@ -9,6 +9,7 @@ import { Command } from "cliffy/command/mod.ts";
9
10
import * as colors from "fmt/colors.ts";
11
import { error } from "log/mod.ts";
12
+import { initYamlIntelligenceResourcesFromFilesystem } from "../../core/schema/utils.ts";
13
import { projectContext } from "../../project/project-context.ts";
14
15
import { serve } from "./serve.ts";
@@ -42,6 +43,7 @@ export const serveCommand = new Command()
42
43
)
44
// deno-lint-ignore no-explicit-any
45
.action(async (options: any, input?: string) => {
46
+ await initYamlIntelligenceResourcesFromFilesystem();
47
if (!input) {
48
error(
49
"No input passed to serve.\n" +
0 commit comments