@actions/languageservice 0.3.9 → 0.3.11
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.
|
@@ -49,15 +49,15 @@
|
|
|
49
49
|
"description": "Returns `true` when any previous step of a job fails. If you have a chain of dependent jobs, `failure()` returns `true` if any ancestor job fails."
|
|
50
50
|
},
|
|
51
51
|
"hashFiles": {
|
|
52
|
-
"description": "Returns a single hash for the set of files that matches the `path` pattern. You can provide a single `path` pattern or multiple `path` patterns separated by commas. The `path` is relative to the `GITHUB_WORKSPACE` directory and can only include files inside of the `GITHUB_WORKSPACE`."
|
|
52
|
+
"description": "Returns a single hash for the set of files that matches the `path` pattern. You can provide a single `path` pattern or multiple `path` patterns separated by commas. The `path` is relative to the `GITHUB_WORKSPACE` directory and can only include files inside of the `GITHUB_WORKSPACE`. This function calculates an individual SHA-256 hash for each matched file, and then uses those hashes to calculate a final SHA-256 hash for the set of files. If the `path` pattern does not match any files, this returns an empty string. For more information about SHA-256, see \"[SHA-2](https://wikipedia.org/wiki/SHA-2).\"\n\nYou can use pattern matching characters to match file names. Pattern matching is case-insensitive on Windows. For more information about supported pattern matching characters, see \"[Workflow syntax for GitHub Actions](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet).\""
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"github": {
|
|
56
56
|
"action": {
|
|
57
|
-
"description": "The name of the action currently running, or the [`id`](https://docs.github.com/actions/
|
|
57
|
+
"description": "The name of the action currently running, or the [`id`](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsid) of a step. GitHub removes special characters, and uses the name `__run` when the current step runs a script without an `id`. If you use the same action more than once in the same job, the name will include a suffix with the sequence number with underscore before it. For example, the first script you run will have the name `__run`, and the second script will be named `__run_2`. Similarly, the second invocation of `actions/checkout` will be `actionscheckout2`."
|
|
58
58
|
},
|
|
59
59
|
"action_path": {
|
|
60
|
-
"description": "The path where an action is located. This property is only supported in composite actions. You can use this path to access files located in the same repository as the action."
|
|
60
|
+
"description": "The path where an action is located. This property is only supported in composite actions. You can use this path to access files located in the same repository as the action, for example by changing directories to the path: `cd ${{ github.action_path }}`."
|
|
61
61
|
},
|
|
62
62
|
"action_ref": {
|
|
63
63
|
"description": "For a step executing an action, this is the ref of the action being executed. For example, `v2`."
|
|
@@ -71,17 +71,24 @@
|
|
|
71
71
|
"actor": {
|
|
72
72
|
"description": "The username of the user that triggered the initial workflow run. If the workflow run is a re-run, this value may differ from `github.triggering_actor`. Any workflow re-runs will use the privileges of `github.actor`, even if the actor initiating the re-run (`github.triggering_actor`) has different privileges."
|
|
73
73
|
},
|
|
74
|
+
"actor_id": {
|
|
75
|
+
"description": "The account ID of the person or app that triggered the initial workflow run. For example, `1234567`. Note that this is different from the actor username.",
|
|
76
|
+
"versions": {
|
|
77
|
+
"ghes": ">=3.9",
|
|
78
|
+
"ghae": ">=3.9"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
74
81
|
"api_url": {
|
|
75
|
-
"description": "The URL of the GitHub
|
|
82
|
+
"description": "The URL of the GitHub REST API."
|
|
76
83
|
},
|
|
77
84
|
"base_ref": {
|
|
78
85
|
"description": "The `base_ref` or target branch of the pull request in a workflow run. This property is only available when the event that triggers a workflow run is either `pull_request` or `pull_request_target`."
|
|
79
86
|
},
|
|
80
87
|
"env": {
|
|
81
|
-
"description": "Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see [Workflow commands](https://docs.github.com/actions/
|
|
88
|
+
"description": "Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see \"[Workflow commands for GitHub Actions](https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable).\""
|
|
82
89
|
},
|
|
83
90
|
"event": {
|
|
84
|
-
"description": "The full event webhook payload. You can access individual properties of the event using this context. This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each GitHub Actions event is linked in [
|
|
91
|
+
"description": "The full event webhook payload. You can access individual properties of the event using this context. This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each GitHub Actions event is linked in \"[Events that trigger workflows](https://docs.github.com/actions/using-workflows/events-that-trigger-workflows).\" For example, for a workflow run triggered by the [`push` event](https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#push), this object contains the contents of the [push webhook payload](https://docs.github.com/webhooks-and-events/webhooks/webhook-events-and-payloads#push)."
|
|
85
92
|
},
|
|
86
93
|
"event_name": {
|
|
87
94
|
"description": "The name of the event that triggered the workflow run."
|
|
@@ -90,53 +97,58 @@
|
|
|
90
97
|
"description": "The path to the file on the runner that contains the full event webhook payload."
|
|
91
98
|
},
|
|
92
99
|
"graphql_url": {
|
|
93
|
-
"description": "The URL of the GitHub
|
|
100
|
+
"description": "The URL of the GitHub GraphQL API."
|
|
94
101
|
},
|
|
95
102
|
"head_ref": {
|
|
96
103
|
"description": "The `head_ref` or source branch of the pull request in a workflow run. This property is only available when the event that triggers a workflow run is either `pull_request` or `pull_request_target`."
|
|
97
104
|
},
|
|
98
105
|
"job": {
|
|
99
|
-
"description": "The [`job_id`](/actions/
|
|
106
|
+
"description": "The [`job_id`](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_id) of the current job.\nNote: This context property is set by the Actions runner, and is only available within the execution `steps` of a job. Otherwise, the value of this property will be `null`."
|
|
100
107
|
},
|
|
101
|
-
"
|
|
102
|
-
"description": "
|
|
108
|
+
"job_workflow_sha": {
|
|
109
|
+
"description": "For jobs using a reusable workflow, the commit SHA for the reusable workflow file.",
|
|
103
110
|
"versions": {
|
|
104
|
-
"ghes": "3.
|
|
105
|
-
"ghae": "3.
|
|
111
|
+
"ghes": ">=3.9",
|
|
112
|
+
"ghae": ">=3.9"
|
|
106
113
|
}
|
|
107
114
|
},
|
|
115
|
+
"path": {
|
|
116
|
+
"description": "Path on the runner to the file that sets system PATH variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see \"[Workflow commands for GitHub Actions](https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path).\""
|
|
117
|
+
},
|
|
118
|
+
"ref": {
|
|
119
|
+
"description": "The fully-formed ref of the branch or tag that triggered the workflow run. For workflows triggered by `push`, this is the branch or tag ref that was pushed. For workflows triggered by `pull_request`, this is the pull request merge branch. For workflows triggered by `release`, this is the release tag created. For other triggers, this is the branch or tag ref that triggered the workflow run. This is only set if a branch or tag is available for the event type. The ref given is fully-formed, meaning that for branches the format is `refs/heads/<branch_name>`, for pull requests it is `refs/pull/<pr_number>/merge`, and for tags it is `refs/tags/<tag_name>`. For example, `refs/heads/feature-branch-1`."
|
|
120
|
+
},
|
|
108
121
|
"ref_name": {
|
|
109
|
-
"description": "The short ref name of the branch or tag that triggered the workflow run. This value matches the branch or tag name shown on GitHub. For example, `feature-branch-1`."
|
|
110
|
-
"versions": {
|
|
111
|
-
"ghes": "3.3",
|
|
112
|
-
"ghae": "3.3"
|
|
113
|
-
}
|
|
122
|
+
"description": "The short ref name of the branch or tag that triggered the workflow run. This value matches the branch or tag name shown on GitHub. For example, `feature-branch-1`."
|
|
114
123
|
},
|
|
115
124
|
"ref_protected": {
|
|
116
|
-
"description": "`true` if branch protections are configured for the ref that triggered the workflow run."
|
|
117
|
-
"versions": {
|
|
118
|
-
"ghes": "3.3",
|
|
119
|
-
"ghae": "3.3"
|
|
120
|
-
}
|
|
125
|
+
"description": "`true` if branch protections are configured for the ref that triggered the workflow run."
|
|
121
126
|
},
|
|
122
127
|
"ref_type": {
|
|
123
|
-
"description": "The type of ref that triggered the workflow run. Valid values are `branch` or `tag`."
|
|
124
|
-
"versions": {
|
|
125
|
-
"ghes": "3.3",
|
|
126
|
-
"ghae": "3.3"
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
"path": {
|
|
130
|
-
"description": "Path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see [Workflow commands](https://docs.github.com/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path)."
|
|
128
|
+
"description": "The type of ref that triggered the workflow run. Valid values are `branch` or `tag`."
|
|
131
129
|
},
|
|
132
130
|
"repository": {
|
|
133
|
-
"description": "The owner and repository name. For example, `
|
|
131
|
+
"description": "The owner and repository name. For example, `octocat/Hello-World`."
|
|
132
|
+
},
|
|
133
|
+
"repository_id": {
|
|
134
|
+
"description": "The ID of the repository. For example, `123456789`. Note that this is different from the repository name.",
|
|
135
|
+
"versions": {
|
|
136
|
+
"ghes": ">=3.9",
|
|
137
|
+
"ghae": ">=3.9"
|
|
138
|
+
}
|
|
134
139
|
},
|
|
135
140
|
"repository_owner": {
|
|
136
|
-
"description": "The repository owner's
|
|
141
|
+
"description": "The repository owner's username. For example, `octocat`."
|
|
142
|
+
},
|
|
143
|
+
"repository_owner_id": {
|
|
144
|
+
"description": "The repository owner's account ID. For example, `1234567`. Note that this is different from the owner's name.",
|
|
145
|
+
"versions": {
|
|
146
|
+
"ghes": ">=3.9",
|
|
147
|
+
"ghae": ">=3.9"
|
|
148
|
+
}
|
|
137
149
|
},
|
|
138
150
|
"repositoryUrl": {
|
|
139
|
-
"description": "The Git URL to the repository. For example, `git://github.com/
|
|
151
|
+
"description": "The Git URL to the repository. For example, `git://github.com/octocat/hello-world.git`."
|
|
140
152
|
},
|
|
141
153
|
"retention_days": {
|
|
142
154
|
"description": "The number of days that workflow run logs and artifacts are kept."
|
|
@@ -148,27 +160,19 @@
|
|
|
148
160
|
"description": "A unique number for each run of a particular workflow in a repository. This number begins at 1 for the workflow's first run, and increments with each new run. This number does not change if you re-run the workflow run."
|
|
149
161
|
},
|
|
150
162
|
"run_attempt": {
|
|
151
|
-
"description": "A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run."
|
|
152
|
-
"versions": {
|
|
153
|
-
"ghes": "3.5",
|
|
154
|
-
"ghae": "3.4"
|
|
155
|
-
}
|
|
163
|
+
"description": "A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run."
|
|
156
164
|
},
|
|
157
165
|
"secret_source": {
|
|
158
|
-
"description": "The source of a secret used in a workflow. Possible values are `None`, `Actions`, `Dependabot`, or `Codespaces`."
|
|
159
|
-
"versions": {
|
|
160
|
-
"ghes": "3.3",
|
|
161
|
-
"ghae": "3.3"
|
|
162
|
-
}
|
|
166
|
+
"description": "The source of a secret used in a workflow. Possible values are `None`, `Actions`, `Dependabot`, or `Codespaces`."
|
|
163
167
|
},
|
|
164
168
|
"server_url": {
|
|
165
169
|
"description": "The URL of the GitHub server. For example: `https://github.com`."
|
|
166
170
|
},
|
|
167
171
|
"sha": {
|
|
168
|
-
"description": "The commit SHA that triggered the workflow. The value of this commit SHA depends on the event that triggered the workflow. For more information, see [Events that trigger workflows
|
|
172
|
+
"description": "The commit SHA that triggered the workflow. The value of this commit SHA depends on the event that triggered the workflow. For more information, see \"[Events that trigger workflows](https://docs.github.com/actions/using-workflows/events-that-trigger-workflows).\" For example, `ffac537e6cbbf934b08745a378932722df287a53`."
|
|
169
173
|
},
|
|
170
174
|
"token": {
|
|
171
|
-
"description": "A token to authenticate on behalf of the GitHub App installed on your repository. This is functionally equivalent to the `GITHUB_TOKEN` secret. For more information, see [Automatic token authentication](https://docs.github.com/actions/security-guides/automatic-token-authentication).\nNote: This context property is set by the Actions runner, and is only available within the execution `steps` of a job. Otherwise, the value of this property will be `null`."
|
|
175
|
+
"description": "A token to authenticate on behalf of the GitHub App installed on your repository. This is functionally equivalent to the `GITHUB_TOKEN` secret. For more information, see \"[Automatic token authentication](https://docs.github.com/actions/security-guides/automatic-token-authentication).\"\nNote: This context property is set by the Actions runner, and is only available within the execution `steps` of a job. Otherwise, the value of this property will be `null`."
|
|
172
176
|
},
|
|
173
177
|
"triggering_actor": {
|
|
174
178
|
"description": "The username of the user that initiated the workflow run. If the workflow run is a re-run, this value may differ from `github.actor`. Any workflow re-runs will use the privileges of `github.actor`, even if the actor initiating the re-run (`github.triggering_actor`) has different privileges."
|
|
@@ -176,13 +180,27 @@
|
|
|
176
180
|
"workflow": {
|
|
177
181
|
"description": "The name of the workflow. If the workflow file doesn't specify a `name`, the value of this property is the full path of the workflow file in the repository."
|
|
178
182
|
},
|
|
183
|
+
"workflow_ref": {
|
|
184
|
+
"description": "The ref path to the workflow. For example, `octocat/hello-world/.github/workflows/my-workflow.yml@refs/heads/my_branch`.",
|
|
185
|
+
"versions": {
|
|
186
|
+
"ghes": ">=3.9",
|
|
187
|
+
"ghae": ">=3.9"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"workflow_sha": {
|
|
191
|
+
"description": "The commit SHA for the workflow file.",
|
|
192
|
+
"versions": {
|
|
193
|
+
"ghes": ">=3.9",
|
|
194
|
+
"ghae": ">=3.9"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
179
197
|
"workspace": {
|
|
180
198
|
"description": "The default working directory on the runner for steps, and the default location of your repository when using the [`checkout`](https://github.com/actions/checkout) action."
|
|
181
199
|
}
|
|
182
200
|
},
|
|
183
201
|
"secrets": {
|
|
184
202
|
"GITHUB_TOKEN": {
|
|
185
|
-
"description": "
|
|
203
|
+
"description": "Automatically created token for each workflow run. For more information, see \"[Automatic token authentication](https://docs.github.com/actions/security-guides/automatic-token-authentication).\""
|
|
186
204
|
}
|
|
187
205
|
},
|
|
188
206
|
"jobs": {
|
|
@@ -195,13 +213,13 @@
|
|
|
195
213
|
},
|
|
196
214
|
"steps": {
|
|
197
215
|
"outputs": {
|
|
198
|
-
"description": "The set of outputs defined for the step."
|
|
216
|
+
"description": "The set of outputs defined for the step. For more information, see \"[Metadata syntax for GitHub Actions](https://docs.github.com/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-docker-container-and-javascript-actions).\""
|
|
199
217
|
},
|
|
200
218
|
"conclusion": {
|
|
201
|
-
"description": "The result of a completed step after `continue-on-error` is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
|
|
219
|
+
"description": "The result of a completed step after [`continue-on-error`](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error) is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
|
|
202
220
|
},
|
|
203
221
|
"outcome": {
|
|
204
|
-
"description": "The result of a completed step before `continue-on-error` is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
|
|
222
|
+
"description": "The result of a completed step before [`continue-on-error`](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error) is applied. Possible values are `success`, `failure`, `cancelled`, or `skipped`. When a `continue-on-error` step fails, the `outcome` is `failure`, but the final conclusion is `success`."
|
|
205
223
|
}
|
|
206
224
|
},
|
|
207
225
|
"runner": {
|
|
@@ -218,24 +236,24 @@
|
|
|
218
236
|
"description": "The path to a temporary directory on the runner. This directory is emptied at the beginning and end of each job. Note that files will not be removed if the runner's user account does not have permission to delete them."
|
|
219
237
|
},
|
|
220
238
|
"tool_cache": {
|
|
221
|
-
"description": "The path to the directory containing preinstalled tools for GitHub-hosted runners. For more information, see \"[About GitHub-hosted runners](https://docs.github.com/actions/reference/specifications-for-github-hosted-runners/#supported-software)
|
|
239
|
+
"description": "The path to the directory containing preinstalled tools for GitHub-hosted runners. For more information, see \"[About GitHub-hosted runners](https://docs.github.com/actions/reference/specifications-for-github-hosted-runners/#supported-software).\""
|
|
222
240
|
},
|
|
223
241
|
"debug": {
|
|
224
|
-
"description": "This is set only if [debug logging](https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging) is enabled, and always has the value of 1
|
|
242
|
+
"description": "This is set only if [debug logging](https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging) is enabled, and always has the value of `1`. It can be useful as an indicator to enable additional debugging or verbose logging in your own job steps."
|
|
225
243
|
}
|
|
226
244
|
},
|
|
227
245
|
"strategy": {
|
|
228
246
|
"fail-fast": {
|
|
229
|
-
"description": "
|
|
230
|
-
},
|
|
231
|
-
"max-parallel": {
|
|
232
|
-
"description": "The `max-parallel` setting for the job. For more information, see [Workflow syntax for GitHub Actions: `jobs.<job_id>.strategy.max-parallel`](https://docs.github.com/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymax-parallel)."
|
|
247
|
+
"description": "When `true`, all in-progress jobs are canceled if any job in a matrix fails. For more information, see \"[Workflow syntax for GitHub Actions](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast).\""
|
|
233
248
|
},
|
|
234
249
|
"job-index": {
|
|
235
250
|
"description": "The index of the current job in the matrix. **Note:** This number is a zero-based number. The first job's index in the matrix is `0`."
|
|
236
251
|
},
|
|
237
252
|
"job-total": {
|
|
238
253
|
"description": "The total number of jobs in the matrix. **Note:** This number **is not** a zero-based number. For example, for a matrix with four jobs, the value of `job-total` is `4`."
|
|
254
|
+
},
|
|
255
|
+
"max-parallel": {
|
|
256
|
+
"description": "The maximum number of jobs that can run simultaneously when using a matrix job strategy. For more information, see \"[Workflow syntax for GitHub Actions](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymax-parallel).\""
|
|
239
257
|
}
|
|
240
258
|
}
|
|
241
259
|
}
|
package/dist/document-links.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ErrorPolicy } from "@actions/workflow-parser/model/convert";
|
|
2
2
|
import { isJob, isReusableWorkflowJob } from "@actions/workflow-parser/model/type-guards";
|
|
3
3
|
import { parseFileReference } from "@actions/workflow-parser/workflows/file-reference";
|
|
4
|
-
import vscodeURI from "vscode-uri
|
|
4
|
+
import * as vscodeURI from "vscode-uri";
|
|
5
5
|
import { actionUrl, parseActionReference } from "./action";
|
|
6
6
|
import { mapRange } from "./utils/range";
|
|
7
7
|
import { fetchOrConvertWorkflowTemplate, fetchOrParseWorkflow } from "./utils/workflow-cache";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-links.js","sourceRoot":"","sources":["../src/document-links.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,wCAAwC,CAAC;AACnE,OAAO,EAAC,KAAK,EAAE,qBAAqB,EAAC,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAC,kBAAkB,EAAC,MAAM,mDAAmD,CAAC;AAGrF,OAAO,SAAS,MAAM,
|
|
1
|
+
{"version":3,"file":"document-links.js","sourceRoot":"","sources":["../src/document-links.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actions/languageservice",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "Language service for GitHub Actions",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"watch": "tsc --build tsconfig.build.json --watch"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@actions/expressions": "^0.3.
|
|
48
|
-
"@actions/workflow-parser": "^0.3.
|
|
47
|
+
"@actions/expressions": "^0.3.11",
|
|
48
|
+
"@actions/workflow-parser": "^0.3.11",
|
|
49
49
|
"vscode-languageserver-textdocument": "^1.0.7",
|
|
50
50
|
"vscode-languageserver-types": "^3.17.2",
|
|
51
|
-
"vscode-uri": "^3.0.
|
|
51
|
+
"vscode-uri": "^3.0.8",
|
|
52
52
|
"yaml": "^2.1.1"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"ts-node": "^10.9.1",
|
|
74
74
|
"typescript": "^4.8.4"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "af7626066f0e22495c051f99cb254863c6099925"
|
|
77
77
|
}
|