Skip to content

Releases: GrapesJS/cli

v4.1.3

30 Aug 13:49
Compare
Choose a tag to compare
  • Update dependencies to avoid typescript conflict
  • Added dts option to the build command

v4.1.0

06 Jun 09:09
Compare
Choose a tag to compare

What's Changed

  • Moving away from esm to a bundled CLI version
  • Fix grapesjs init in default template by @lexoyo in #285

Full Changelog: v4.0.1...v4.1.0

v4.0.1

03 Feb 10:06
Compare
Choose a tag to compare
  • Catch errors better and fix async yargs

Full Changelog: v4.0.0...v4.0.1

v4.0.0

25 Jan 08:31
Compare
Choose a tag to compare
  • Minimal NodeJS version required 14.15.0
  • Ensure stats object exists #276

Full Changelog: v3.0.1...v4.0.0

v3.0.1

09 Jun 13:47
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.0...v3.0.1

v3.0.0

18 Feb 15:48
Compare
Choose a tag to compare

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

v2.0.0

22 Sep 13:54
Compare
Choose a tag to compare

⚠ BREAKING CHANGES

  • Drop Node 10, Node 12 is now the minimum version

Updates

  • Added globalObject option in webpack config
  • Added default .npmignore

v1.0.15

24 Mar 20:16
Compare
Choose a tag to compare
  • Use rimraf to delete locale directory #163
  • Add localePath option to the build command
  • Add babel class properties plugin
  • Update dependencies

v1.0.14

05 Jan 14:08
Compare
Choose a tag to compare
  • Updated dependencies
  • Added webpack config customization (check the README)

v1.0.13

26 Sep 19:21
Compare
Choose a tag to compare
  • Updated dependencies
  • Added compress: { evaluate: false }, option to WebpackTerserPlugin to avoid breaking grapesjs scripts