chore: test ci output

This commit is contained in:
sand4rt 2024-05-09 22:27:08 +02:00
parent 7e98adf59b
commit a4083b3b8e
3 changed files with 4 additions and 3 deletions

2
package-lock.json generated
View file

@ -8401,7 +8401,7 @@
"zone.js": "~0.14.0" "zone.js": "~0.14.0"
}, },
"engines": { "engines": {
"node": ">=16" "node": ">=18"
}, },
"peerDependencies": { "peerDependencies": {
"@angular/compiler": "^17.0.0", "@angular/compiler": "^17.0.0",

View file

@ -8,7 +8,7 @@
}, },
"homepage": "https://playwright.dev", "homepage": "https://playwright.dev",
"engines": { "engines": {
"node": ">=16" "node": ">=18"
}, },
"author": { "author": {
"name": "Microsoft Corporation" "name": "Microsoft Corporation"

View file

@ -86,6 +86,7 @@ class Workspace {
return; return;
hasChanges = true; hasChanges = true;
console.warn('Updated', jsonPath); console.warn('Updated', jsonPath);
console.warn(json);
await writeJSON(jsonPath, json); await writeJSON(jsonPath, json);
}; };
@ -125,7 +126,7 @@ class Workspace {
} }
await maybeWriteJSON(pkg.packageJSONPath, pkg.packageJSON); await maybeWriteJSON(pkg.packageJSONPath, pkg.packageJSON);
} }
// Re-run npm i to make package-lock dirty. // Re-run npm i to make package-lock dirty.
child_process.execSync('npm i'); child_process.execSync('npm i');
return hasChanges; return hasChanges;