@wraps.dev/cli 2.10.3 → 2.10.4

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/cli.js CHANGED
@@ -19348,7 +19348,7 @@ async function templatesPush(options) {
19348
19348
  const filePath = join9(templatesDir, file);
19349
19349
  const source = await readFile4(filePath, "utf-8");
19350
19350
  const sourceHash = sha256(source);
19351
- if (!options.force && lockfile.templates[slug]?.localHash === sourceHash) {
19351
+ if (lockfile.templates[slug]?.localHash === sourceHash) {
19352
19352
  unchanged.push(slug);
19353
19353
  continue;
19354
19354
  }