Skip to content

v10.0.0

Compare
Choose a tag to compare
@sindresorhus sindresorhus released this 05 May 15:20
· 57 commits to main since this release

Breaking

  • Require Node.js 12 (#181) 05320ac
  • This package is now pure ESM. Please read this.
  • You must now pass in the importMeta option so meow can find your package.json:
 const cli = meow(…, {
+	importMeta: import.meta
 });

Previously, meow used some tricks to infer the location of your package.json, but this no longer works in ESM.

v9.0.0...v10.0.0