@owloops/browserbird 1.0.3 → 1.0.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/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -122,7 +122,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
|
|
|
122
122
|
/** @fileoverview ASCII banner displayed on daemon startup and in help text. */
|
|
123
123
|
const pkg = createRequire(import.meta.url)("../package.json");
|
|
124
124
|
const buildInfo = [];
|
|
125
|
-
buildInfo.push(`commit: ${"
|
|
125
|
+
buildInfo.push(`commit: ${"31deacfff288caf3ef7112dbf1077a0430fb74a6".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-01T15:25:23+04:00`);
|
|
126
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
127
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
128
129
|
const BIRD = [
|