@normed/bundle 4.8.2 → 4.8.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/bundles/log.d.ts CHANGED
@@ -1,3 +1,9 @@
1
+ /**
2
+ * Whether the current environment is a coding agent.
3
+ * Detected via environment variables set by known agents.
4
+ * Used to provide condensed output (e.g. file counts instead of file lists).
5
+ */
6
+ export declare const isAgent: boolean;
1
7
  type LogFunction = (...message: any[]) => void;
2
8
  export type LogLevel = "debug" | "verbose" | "info" | "warn" | "error" | "critical";
3
9
  export declare function setMinLogLevel(level: number | LogLevel): void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@normed/bundle",
3
3
  "author": "Normal Gaussian <normed.bundle@normal-gaussian.com>",
4
- "version": "4.8.2",
4
+ "version": "4.8.3",
5
5
  "bin": "bundles/bin/cli.js",
6
6
  "type": "module",
7
7
  "exports": {