Skip to content

Commit

Permalink
remove --compact from vscode extension
Browse files Browse the repository at this point in the history
  • Loading branch information
aspizu committed Jan 13, 2025
1 parent 7d2488c commit 1078e89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion editors/code/src/goboscript-task-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class GoboscriptTaskProvider implements vscode.TaskProvider {
this.workspaceRoot,
"goboscript-build",
"goboscript",
new vscode.ShellExecution("goboscript build --compact"),
new vscode.ShellExecution("goboscript build"),
["goboscript"],
)
return [task]
Expand Down
2 changes: 1 addition & 1 deletion editors/code/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from "vscode"
import { GoboscriptTaskProvider } from "./goboscript-task-provider"
import {GoboscriptTaskProvider} from "./goboscript-task-provider"

let goboscriptTaskProvider: vscode.Disposable | undefined

Expand Down

0 comments on commit 1078e89

Please sign in to comment.