Compare commits

...

2 commits

Author SHA1 Message Date
Henning Dieterichs
09eede5b26
Logs the sha of dependencies (#5146) 2025-12-16 17:52:03 +01:00
Henning Dieterichs
7649edb383
Updates node to 22.21.1 (#5147) 2025-12-16 17:51:51 +01:00
3 changed files with 4 additions and 3 deletions

2
.nvmrc
View file

@ -1 +1 @@
22.20.0
22.21.1

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "monaco-editor",
"version": "0.55.0",
"version": "0.55.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "monaco-editor",
"version": "0.55.0",
"version": "0.55.1",
"hasInstallScript": true,
"license": "MIT",
"devDependencies": {

View file

@ -54,6 +54,7 @@ export async function gitShallowClone(
await run(`git fetch --depth 1 origin ${ref}`, options);
await run(`git checkout ${ref}`, options);
const commitId = await gitCommitId(targetPath);
console.log(`Cloned ${repositoryUrl} (${commitId}) to ${targetPath}`);
return { commitId };
}