Skip to content

Commit

Permalink
Merge pull request #17 from narumincho/dev
Browse files Browse the repository at this point in the history
update 1.87.0
  • Loading branch information
narumincho authored Feb 29, 2024
2 parents f7846be + 4585eb6 commit 001b4e7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ esbuild or something similar should be used. ( https://deno.land/x/esbuild )
import {
ExtensionContext,
importVsCodeApi,
} from "https://deno.land/x/vscode@1.86.0/mod.ts";
} from "https://deno.land/x/vscode@1.87.0/mod.ts";

export function activate(context: ExtensionContext) {
const vscode = importVsCodeApi();
Expand Down
12 changes: 6 additions & 6 deletions gen/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ edition = "2021"

[dependencies]
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
anyhow = "1.0.79"
anyhow = "1.0.80"
reqwest = "0.11.24"
thiserror = "1.0.56"
thiserror = "1.0.57"
swc_atoms = "0.5.9"
swc_common = "0.31.22"
swc_ecma_parser = "0.137.16"
Expand Down
5 changes: 4 additions & 1 deletion gen/out.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ Returns VSCodeApi only within the vscode extension.
/**
* Render the line numbers with values relative to the primary cursor location.
*/ readonly Relative: 2;
/**
* Render the line numbers on every 10th line number.
*/ readonly Interval: 3;
};
/**
* Represents different {@link TextEditor.revealRange reveal} strategies in a text editor.
Expand Down Expand Up @@ -11480,7 +11483,7 @@ type ValueOf<T> = T[keyof T];
* until `Terminal.show` is called. The typical usage for this is when you need to run
* something that may need interactivity but only want to tell the user about it when
* interaction is needed. Note that the terminals will still be exposed to all extensions
* as normal.
* as normal and they will remain hidden when the workspace is reloaded.
*/ hideFromUser?: boolean;
/**
* A message to write to the terminal on first launch, note that this is not sent to the
Expand Down
5 changes: 4 additions & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ Returns VSCodeApi only within the vscode extension.
/**
* Render the line numbers with values relative to the primary cursor location.
*/ readonly Relative: 2;
/**
* Render the line numbers on every 10th line number.
*/ readonly Interval: 3;
};
/**
* Represents different {@link TextEditor.revealRange reveal} strategies in a text editor.
Expand Down Expand Up @@ -12434,7 +12437,7 @@ type ValueOf<T> = T[keyof T];
* until `Terminal.show` is called. The typical usage for this is when you need to run
* something that may need interactivity but only want to tell the user about it when
* interaction is needed. Note that the terminals will still be exposed to all extensions
* as normal.
* as normal and they will remain hidden when the workspace is reloaded.
*/ hideFromUser?: boolean;
/**
* A message to write to the terminal on first launch, note that this is not sent to the
Expand Down

0 comments on commit 001b4e7

Please sign in to comment.