Skip to content

v1.0.0

Choose a tag to compare

@ChristianMurphy ChristianMurphy released this 13 Jul 19:59
· 69 commits to main since this release
v1.0.0
d6ec316

this release adds typescript definitions and uses ES Module format

to migrate change

// from cjs import
var classifyPoetry = require("classify-poetry").classifyPoetry;

// to esm import
import { classifyPoetry } from "classify-poetry";

for additional ESM considerations see this guide on ESM.