File tree 3 files changed +10
-9
lines changed 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";
18
18
import { capabilitiesCommand } from "./capabilities/cmd.ts" ;
19
19
import { checkCommand } from "./check/cmd.ts" ;
20
20
import { inspectCommand } from "./inspect/cmd.ts" ;
21
- import { buildJsCommand } from "./build-js/cmd.ts" ;
22
21
import { installCommand } from "./install/cmd.ts" ;
23
22
import { updateCommand } from "./update/cmd.ts" ;
24
23
import { publishCommand } from "./publish/cmd.ts" ;
@@ -57,7 +56,6 @@ export function commands(): Command<any>[] {
57
56
capabilitiesCommand ,
58
57
inspectCommand ,
59
58
checkCommand ,
60
- buildJsCommand ,
61
59
editorSupportCommand ,
62
60
callCommand ,
63
61
devCallCommand ,
Original file line number Diff line number Diff line change @@ -10,17 +10,17 @@ import {
10
10
ESBuildAnalysis ,
11
11
esbuildAnalyze ,
12
12
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" ;
16
16
import { simple } from "acorn/walk" ;
17
17
import { Parser } from "acorn/acorn" ;
18
18
import classFields from "acorn-class-fields" ;
19
- import { initYamlIntelligenceResourcesFromFilesystem } from "../../core/schema/utils.ts" ;
19
+ import { initYamlIntelligenceResourcesFromFilesystem } from "../../../ core/schema/utils.ts" ;
20
20
21
21
// 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" ;
24
24
25
25
function ensureAllowableIDESyntax ( src : string , filename : string ) {
26
26
const ast = Parser . extend ( classFields ) . parse ( src , {
Original file line number Diff line number Diff line change 1
1
import { Command } from "cliffy/command/mod.ts" ;
2
2
import { quartoConfig } from "../../core/quarto.ts" ;
3
3
import { commands } from "../command.ts" ;
4
+ import { buildJsCommand } from "./build-artifacts/cmd.ts" ;
4
5
5
6
type CommandOptionInfo = {
6
7
name : string ;
@@ -55,4 +56,6 @@ export const devCallCommand = new Command()
55
56
. action ( ( ) => {
56
57
devCallCommand . showHelp ( ) ;
57
58
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