Skip to content

v1.1.0 - Getting Started

Compare
Choose a tag to compare
@benrr101 benrr101 released this 27 Sep 02:52
· 150 commits to develop since this release

This version adds:

  • A getting started section to the readme!
  • Auto-generated docs from the TSdoc comments in the source
  • Exporting more types via the index.ts
  • Adding an engines directive to the package.json to fix an issue where compiling typescript projects referencing the package would blow up b/c node types couldn't be found
    • Package works with Node 12 (definitely) and up (probably)

Small breaking changes (that probably won't bother anyone... really, who's using this library right now anyways):

  • AudioHeader (from MPEG) is now exported as a default class of the file src/mpeg/audioHeader.ts If you have:
    import {AudioHeader} from "node-taglib-sharp/dist/mpeg/audioHeader";
    change it to:
    import AudioHeader from "node-taglib-sharp/dist/mpeg/audioHeader";
    or better yet use the new export:
    import {MpegAudioHeader} from "node-taglib-sharp";
  • If you worked around the node reference issue by adding a reference to @types/node to your project, you no longer need it.