fix: missed incorrect AI autocomplete.
This commit is contained in:
@@ -46,7 +46,7 @@ console.log(`SK Azure Tools Locked version: ${skAzToolsPackageLock.version}`);
|
|||||||
// Update package.json if --update flag is set
|
// Update package.json if --update flag is set
|
||||||
// or if the version of @slawek/sk-az-tools in package.json
|
// or if the version of @slawek/sk-az-tools in package.json
|
||||||
// is different than the version in package-lock.json.
|
// is different than the version in package-lock.json.
|
||||||
if (values.update || skAzToolsPackage.version !== skToolsPackage.version) {
|
if (values.update || skAzToolsPackage.version !== skAzToolsPackageLock.version) {
|
||||||
console.log(`Updating package.json...`);
|
console.log(`Updating package.json...`);
|
||||||
skAzToolsPackage.dependencies["@slawek/sk-tools"] = `>=${skToolsPackage.version}`;
|
skAzToolsPackage.dependencies["@slawek/sk-tools"] = `>=${skToolsPackage.version}`;
|
||||||
writeFileSync(skAzToolsPackagePath, JSON.stringify(skAzToolsPackage, null, 4));
|
writeFileSync(skAzToolsPackagePath, JSON.stringify(skAzToolsPackage, null, 4));
|
||||||
|
|||||||
Reference in New Issue
Block a user