@stackable-labs/cli-app-extension 1.27.0 → 1.27.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/README.md CHANGED
@@ -139,9 +139,9 @@ npx @stackable-labs/cli-app-extension@latest create
139
139
  npx clear-npx-cache
140
140
  ```
141
141
 
142
- **pnpm dlx** — Force a fresh resolve:
142
+ **pnpm dlx** — Bypass the 24-hour dlx cache:
143
143
  ```bash
144
- pnpm dlx --recreate-lockfile @stackable-labs/cli-app-extension@latest create
144
+ pnpm --config.dlx-cache-max-age=0 dlx @stackable-labs/cli-app-extension@latest create
145
145
  ```
146
146
 
147
147
  > **Note:** After a new version is published to npm, there may be a brief delay (up to ~15 minutes) before the npm CDN propagates the update.
package/dist/index.js CHANGED
@@ -1685,6 +1685,7 @@ var scaffold = async (options) => {
1685
1685
  const templateSource = TEMPLATE_SOURCES[flavor];
1686
1686
  const { dir } = await downloadTemplate(templateSource, {
1687
1687
  dir: options.outputDir,
1688
+ forceClean: true,
1688
1689
  force: true
1689
1690
  });
1690
1691
  await replacePlaceholders(dir, {
@@ -2449,7 +2450,7 @@ var DevDashboard = ({
2449
2450
  " ",
2450
2451
  w
2451
2452
  ] }, i)),
2452
- /* @__PURE__ */ jsx17(Text17, { dimColor: true, children: " Run `stackable-app-extension update` to review and sync." })
2453
+ /* @__PURE__ */ jsx17(Text17, { dimColor: true, children: " Run `pnpm --config.dlx-cache-max-age=0 dlx @stackable-labs/cli-app-extension@latest update` to review and sync." })
2453
2454
  ] })
2454
2455
  ]
2455
2456
  }
@@ -3028,7 +3029,7 @@ var checkForUpdate = (currentVersion) => {
3028
3029
  if (latest && latest !== currentVersion && currentVersion !== "0.0.0" && isNewer(latest, currentVersion)) {
3029
3030
  const warning = `
3030
3031
  \x1B[33m\u26A0 Update available: ${currentVersion} \u2192 ${latest}\x1B[0m
3031
- Run \x1B[36mnpx @stackable-labs/cli-app-extension@latest\x1B[0m to update
3032
+ Run \x1B[36mpnpm --config.dlx-cache-max-age=0 dlx @stackable-labs/cli-app-extension@latest\x1B[0m to update
3032
3033
  `;
3033
3034
  console.error(warning);
3034
3035
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackable-labs/cli-app-extension",
3
- "version": "1.27.0",
3
+ "version": "1.27.2",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {