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.
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -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
|
|
171
|
+
if (!runInstall || dryRun) continue;
|
|
172
172
|
try {
|
|
173
173
|
const targetDir = path.dirname(packageJsonPath);
|
|
174
174
|
console.log(' 📥 Installing...');
|
package/dist/esm/index.mjs
CHANGED
|
@@ -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
|
|
169
|
+
if (!runInstall || dryRun) continue;
|
|
170
170
|
try {
|
|
171
171
|
const targetDir = path.dirname(packageJsonPath);
|
|
172
172
|
console.log(' 📥 Installing...');
|