⚠ 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.