deplift 1.2.1 → 1.2.2

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.
@@ -168,7 +168,7 @@ async function main() {
168
168
  } else {
169
169
  console.log(` ✅ No changes needed for ${packageJson}.`);
170
170
  }
171
- if (!runInstall || dryRun || !updated) continue;
171
+ if (!runInstall || dryRun) continue;
172
172
  try {
173
173
  const targetDir = path.dirname(packageJsonPath);
174
174
  console.log(' 📥 Installing...');
@@ -166,7 +166,7 @@ async function main() {
166
166
  } else {
167
167
  console.log(` ✅ No changes needed for ${packageJson}.`);
168
168
  }
169
- if (!runInstall || dryRun || !updated) continue;
169
+ if (!runInstall || dryRun) continue;
170
170
  try {
171
171
  const targetDir = path.dirname(packageJsonPath);
172
172
  console.log(' 📥 Installing...');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deplift",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "CLI to update deps in monorepos",
5
5
  "author": "Zheng Song",
6
6
  "license": "MIT",