discord-message-transcript-base 1.2.0-dev.1.2.0.10.0 → 1.2.0-dev.1.2.0.12.0

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.
@@ -6,5 +6,5 @@ export class CustomError extends Error {
6
6
  }
7
7
  }
8
8
  export function CustomWarn(message) {
9
- console.warn(`[discord-message-transcript] ${message}`);
9
+ console.warn(`[discord-message-transcript] Warning: ${message}`);
10
10
  }
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ConvertTranscriptOptions, ReturnTypeBase, OutputTypeBase } from "./types/types.js";
2
2
  export * from './types/types.js';
3
- export { CustomError } from "./core/customMessages.js";
3
+ export { CustomError, CustomWarn } from "./core/customMessages.js";
4
4
  export { output as outputBase } from "./core/output.js";
5
5
  /**
6
6
  * Converts a JSON transcript string into an HTML transcript.
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import { CustomError } from "./core/customMessages.js";
2
2
  import { output } from "./core/output.js";
3
3
  import { ReturnTypeBase, ReturnFormat } from "./types/types.js";
4
4
  export * from './types/types.js';
5
- export { CustomError } from "./core/customMessages.js";
5
+ export { CustomError, CustomWarn } from "./core/customMessages.js";
6
6
  export { output as outputBase } from "./core/output.js";
7
7
  /**
8
8
  * Converts a JSON transcript string into an HTML transcript.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "discord-message-transcript-base",
3
- "version": "1.2.0-dev.1.2.0.10.0",
3
+ "version": "1.2.0-dev.1.2.0.12.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",