Skip to content

Releases: vizhub-core/llm-code-format

v2.0.1

06 Apr 14:58
Compare
Choose a tag to compare

Fix NPM dist

Full Changelog: v2.0.0...v2.0.1

v2.0.0

06 Apr 14:01
Compare
Choose a tag to compare

What's Changed

Both of these are breaking changes:

  • Adopt viz-types FileCollection data structure by @curran in #9
  • Rename format function from serializeMarkdownFiles to formatMarkdownFiles by @curran in #11

Vibe coding prompt for automatic migration:

We need to upgrade to the latest dependencies, which have breaking changes: 1.) `llm-code-format` has renamed `serializeMarkdownFiles` to `formatMarkdownFil
es`. 2.) With both of those functions, they don't represent files as arrays anymore, but rather as objects: ```// FileCollection 
// * A simple collection of files. 
// * Keys are file names. 
// * Values are file contents. 
// * This is used for scenarios where we need to 
//   work with files in a simple way, without 
//   the complexity of a full VizFile structure. 
export type FileCollection = Record<string, string>; 
```. You can `import { FileCollection } from "@vizhub/viz-types";` to get the correct type. Please update all files as needed to accommodate these breaking 
changes in `llm-code-format`. 

Full Changelog: v1.0.2...v2.0.0

v1.0.2

04 Apr 23:14
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.0.2

v1.0.1

04 Apr 23:03
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.0...v1.0.1

v1.0.0

04 Apr 16:17
Compare
Choose a tag to compare

What's Changed

  • Add streaming parsing of non-code lines by @curran in #6

Full Changelog: v0.3.0...v1.0.0

v0.3.0

03 Apr 03:16
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @curran made their first contribution in #5

Full Changelog: v0.2.2...v0.3.0

v0.1.0

16 Jan 23:58
Compare
Choose a tag to compare