@stackable-labs/cli-app-extension 1.27.1 → 1.27.3
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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
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** —
|
|
142
|
+
**pnpm dlx** — Bypass the 24-hour dlx cache:
|
|
143
143
|
```bash
|
|
144
|
-
pnpm dlx
|
|
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
|
@@ -2450,7 +2450,7 @@ var DevDashboard = ({
|
|
|
2450
2450
|
" ",
|
|
2451
2451
|
w
|
|
2452
2452
|
] }, i)),
|
|
2453
|
-
/* @__PURE__ */ jsx17(Text17, { dimColor: true, children: " Run `pnpm dlx @stackable-labs/cli-app-extension@latest 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." })
|
|
2454
2454
|
] })
|
|
2455
2455
|
]
|
|
2456
2456
|
}
|
|
@@ -3029,7 +3029,7 @@ var checkForUpdate = (currentVersion) => {
|
|
|
3029
3029
|
if (latest && latest !== currentVersion && currentVersion !== "0.0.0" && isNewer(latest, currentVersion)) {
|
|
3030
3030
|
const warning = `
|
|
3031
3031
|
\x1B[33m\u26A0 Update available: ${currentVersion} \u2192 ${latest}\x1B[0m
|
|
3032
|
-
Run \x1B[
|
|
3032
|
+
Run \x1B[36mpnpm --config.dlx-cache-max-age=0 dlx @stackable-labs/cli-app-extension@latest\x1B[0m to update
|
|
3033
3033
|
`;
|
|
3034
3034
|
console.error(warning);
|
|
3035
3035
|
}
|