File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ import { typstCommand } from "./typst/cmd.ts";
1818import { capabilitiesCommand } from "./capabilities/cmd.ts" ;
1919import { checkCommand } from "./check/cmd.ts" ;
2020import { inspectCommand } from "./inspect/cmd.ts" ;
21- import { buildJsCommand } from "./build-js/cmd.ts" ;
2221import { installCommand } from "./install/cmd.ts" ;
2322import { updateCommand } from "./update/cmd.ts" ;
2423import { publishCommand } from "./publish/cmd.ts" ;
@@ -57,7 +56,6 @@ export function commands(): Command<any>[] {
5756 capabilitiesCommand ,
5857 inspectCommand ,
5958 checkCommand ,
60- buildJsCommand ,
6159 editorSupportCommand ,
6260 callCommand ,
6361 devCallCommand ,
Original file line number Diff line number Diff line change @@ -10,17 +10,17 @@ import {
1010 ESBuildAnalysis ,
1111 esbuildAnalyze ,
1212 esbuildCompile ,
13- } from "../../core/esbuild.ts" ;
14- import { buildIntelligenceResources } from "../../core/schema/build-schema-file.ts" ;
15- import { formatResourcePath , resourcePath } from "../../core/resources.ts" ;
13+ } from "../../../ core/esbuild.ts" ;
14+ import { buildIntelligenceResources } from "../../../ core/schema/build-schema-file.ts" ;
15+ import { formatResourcePath , resourcePath } from "../../../ core/resources.ts" ;
1616import { simple } from "acorn/walk" ;
1717import { Parser } from "acorn/acorn" ;
1818import classFields from "acorn-class-fields" ;
19- import { initYamlIntelligenceResourcesFromFilesystem } from "../../core/schema/utils.ts" ;
19+ import { initYamlIntelligenceResourcesFromFilesystem } from "../../../ core/schema/utils.ts" ;
2020
2121// initialize language handlers
22- import "../../core/handlers/handlers.ts" ;
23- import { join } from "../../deno_ral/path.ts" ;
22+ import "../../../ core/handlers/handlers.ts" ;
23+ import { join } from "../../../ deno_ral/path.ts" ;
2424
2525function ensureAllowableIDESyntax ( src : string , filename : string ) {
2626 const ast = Parser . extend ( classFields ) . parse ( src , {
Original file line number Diff line number Diff line change 11import { Command } from "cliffy/command/mod.ts" ;
22import { quartoConfig } from "../../core/quarto.ts" ;
33import { commands } from "../command.ts" ;
4+ import { buildJsCommand } from "./build-artifacts/cmd.ts" ;
45
56type CommandOptionInfo = {
67 name : string ;
@@ -55,4 +56,6 @@ export const devCallCommand = new Command()
5556 . action ( ( ) => {
5657 devCallCommand . showHelp ( ) ;
5758 Deno . exit ( 1 ) ;
58- } ) . command ( "cli-info" , generateCliInfoCommand ) ;
59+ } )
60+ . command ( "cli-info" , generateCliInfoCommand )
61+ . command ( "build-artifacts" , buildJsCommand ) ;
You can’t perform that action at this time.
0 commit comments