Releases: GrapesJS/cli
Releases · GrapesJS/cli
v4.1.3
v4.1.0
v4.0.1
- Catch errors better and fix async yargs
Full Changelog: v4.0.0...v4.0.1
v4.0.0
v3.0.1
What's Changed
- Bump minimist from 1.2.5 to 1.2.6 by @dependabot in #272
- Bump node-forge from 1.2.1 to 1.3.0 by @dependabot in #273
- Bump async from 2.6.3 to 2.6.4 by @dependabot in #274
Full Changelog: v3.0.0...v3.0.1
v3.0.0
⚠ 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
todist/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 generatedist/index.d.ts
with all your TS declarations.