Skip to content

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 27 Apr 13:54
· 13 commits to main since this release

Minor Changes

  • 8ecd543: Separated anime, simkl, types

    • Anime class is now in src/anime/index.ts
    • Simkl class is now in src/simkl/index.ts
    • types is now in src/types/index.ts

    Instead of importing them all in simkl-node, you can now import them individually.

    Before

    import { Anime, Simkl, types } from "simkl-node";

    After

    import { Anime } from "simkl-node/anime";
    import { Simkl } from "simkl-node/simkl";