Skip to content

v3.0.0

Compare
Choose a tag to compare
@artf artf released this 18 Feb 15:48
· 70 commits to master since this release

⚠ BREAKING CHANGE

  • Upgraded to webpack v5 with all the relative plugins. That means, in case you're using a custom webpack.config.js, you might need to check not to use deprecated options.
  • Changed the output filenames from dist/my-plugin-name.min.js to dist/index.js. That means you have to update your "main" in package.json
{
  "name": "my-plugin-name",
  "version": "1.0.0",
  "main": "dist/index.js",
  ...
}

Updates

  • Extended support to Typescript. Now if you use src/index.ts as your entry point, the CLI will also generate dist/index.d.ts with all your TS declarations.