@ovencord/transcript 1.0.1 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ovencord/transcript",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Ultrafast, zero-dependency Discord HTML transcript generator exclusively for the Bun ecosystem.",
5
5
  "module": "src/index.ts",
6
6
  "main": "src/index.ts",
package/src/generator.ts CHANGED
@@ -1,4 +1,4 @@
1
- import mustache from 'mustache-bun/mustache.js';
1
+ import mustache from '@ovencord/mustache';
2
2
  import { htmlTemplate, css } from './template.ts';
3
3
  import type { Message, TranscriptOptions, ChannelInfo, Button, SelectMenu, AnyComponent, ContainerComponent, TextDisplayComponent, SeparatorComponent, ActionRow } from './types.ts';
4
4
  // Helper to format Date
package/src/mustache.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- declare module 'mustache-bun/mustache.js' {
1
+ declare module '@ovencord/mustache' {
2
2
  export interface MustacheStatic {
3
3
  render(template: string, view: any, partials?: any, tags?: any): string;
4
4
  escape(text: string): string;