@daiyam/artifact-vsx-ts 0.9.3 → 0.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ jobs:
15
15
  runs-on: ubuntu-latest
16
16
  steps:
17
17
  - name: Checkout code
18
- uses: actions/checkout@v4
18
+ uses: actions/checkout@v6
19
19
  with:
20
20
  fetch-depth: 0
21
21
 
@@ -60,7 +60,7 @@ jobs:
60
60
 
61
61
  - name: Setup Node.js
62
62
  if: env.RELEASE_EXISTS == 'no'
63
- uses: actions/setup-node@v4
63
+ uses: actions/setup-node@v6
64
64
  with:
65
65
  node-version: 20
66
66
 
@@ -15,6 +15,10 @@ export let WORKSPACE_STORAGE: string | undefined;
15
15
 
16
16
  let $context: vscode.ExtensionContext | null = null;
17
17
 
18
+ export function getContext(): vscode.ExtensionContext {
19
+ return $context!;
20
+ }
21
+
18
22
  export async function setupSettings(context: vscode.ExtensionContext): Promise<Result<void, string>> {
19
23
  EXTENSION_NAME = context.extension.packageJSON.displayName as string;
20
24
  EXTENSION_ID = context.extension.id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-vsx-ts",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "description": "The configuration to create Visual Studio extensions and publish them on Visual Studio Marketplace and Open VSX Registry.",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "0e08b728d3788009c0c81f21b0e06d8682964c82"
34
+ "gitHead": "87e81e40835a9965ef4b3bce2ae30449a1e9e8e9"
35
35
  }