agentful 0.2.4 → 0.2.5
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/index.cjs +4 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3044,7 +3044,7 @@ var VERSION, brand, useColor, wrap, paint, sym, ui;
|
|
|
3044
3044
|
var init_branding = __esm({
|
|
3045
3045
|
"src/branding.ts"() {
|
|
3046
3046
|
"use strict";
|
|
3047
|
-
VERSION = "0.2.
|
|
3047
|
+
VERSION = "0.2.5" ? "0.2.5" : null.version;
|
|
3048
3048
|
brand = {
|
|
3049
3049
|
name: "agentful",
|
|
3050
3050
|
// the command users type
|
|
@@ -5946,6 +5946,9 @@ function compareVersions(a, b) {
|
|
|
5946
5946
|
}
|
|
5947
5947
|
function noticeIfOutdated(manifest) {
|
|
5948
5948
|
if (!manifest) return;
|
|
5949
|
+
if (manifest.notice) {
|
|
5950
|
+
ui.info(paint.dim(manifest.notice));
|
|
5951
|
+
}
|
|
5949
5952
|
const min = manifest.min_cli_version;
|
|
5950
5953
|
const latest = manifest.latest_cli_version;
|
|
5951
5954
|
if (min && compareVersions(VERSION, min) < 0) {
|