Skip to content

Releases: jwanner83/liferay-npm-bundler-improved

1.5.1 - fixing version

18 Jan 09:27
Compare
Choose a tag to compare

fixing the version of 1.5.0 because it was previously 1.5.0-beta.11

See #61

1.5.0 Adding watch mode!

08 Jan 15:52
9fda8ab
Compare
Choose a tag to compare

This release adds a watch mode to the bundler which increases the developer experience even more!

1.5.0-beta.11 - Improve Reconnecting of Socket

20 Sep 13:13
Compare
Choose a tag to compare
#9 increase version

1.5.0-beta.5 - 1.5.0-beta.10 - Finalizing Watch Mode

20 Sep 12:22
Compare
Choose a tag to compare

This release contains the following releases:

  • 1.5.0-beta.5
  • 1.5.0-beta.6
  • 1.5.0-beta.7
  • 1.5.0-beta.8
  • 1.5.0-beta.9
  • 1.5.0-beta.10

1.5.0-beta.4 - Localization Support!

25 May 09:14
Compare
Choose a tag to compare
Pre-release

localization support!

if you have a Liferay.Language.get('key') function anywhere inside the bundle, it will be replaced with a translation which you have defined inside of your Language.properties files in the application.

drawbacks

it doesn't take the correct language which the liferay is currently used in, only the default one. as well, only the language properties inside the portlet are working.

1.5.0-beta.3 - Quality of Life improvements

24 May 15:25
Compare
Choose a tag to compare

error support

in this release, the error support is vastly improved. if you write an error inside your portlet's code, the watch mode will show you the location of the error in the console but as well in the frontend.

Bildschirm­foto 2023-05-24 um 16 18 28 Bildschirm­foto 2023-05-24 um 16 19 30

status bar

a new status bar is shown at the bottom of the page which shows the current status of the watch mode.

Bildschirm­foto 2023-05-24 um 16 18 49

reconnect

the watch mode will automatically try to reconnect to the server if the connection is lost.

1.5.0-beta.2 - Watchmode Improvements

22 May 13:36
Compare
Choose a tag to compare
Pre-release

watch mode improvements

logging has been improved vastly throughout the entire application and the watch mode.

Bildschirm­foto 2023-05-22 um 15 33 19

deployment

the deployment is now opt in, by adding the -d or --deployment flag. if this flag is set, the environment variable LIFERAY_DEPLOYMENT_PATH needs to be set or an error is thrown.

1.5.0-beta.1 - Watch Mode & Deployment Support!

22 May 08:46
Compare
Choose a tag to compare

watch mode support! #9

add the -w or --watch option like this, and you will be able to use a watch mode for your portlet with live instance replacement. the only requirement is that you use vite to build your project.

"scripts": {
    "dev": "liferay-npm-bundler-improved -w"
  }

note: if you didn't set the deployment variable in your .env file, you have to manually move the created jar file into your deployment folder, after you started the watch mode.

deployment support! #52

additionally, if you add a .env file in your project and set the LIFERAY_DEPLOYMENT_PATH variable, the liferay-npm-bundler-improved will automatically deploy your created jar file into your defined folder!

1.4.0 - Enable portlet instance configuration

15 May 14:44
58898ca
Compare
Choose a tag to compare

One of the most anticipated features: #8 Portlet Configuration support just has landed! Use it like you're used to with the original liferay-npm-bundler!

1.3.0 - Improve developer experience & documentation

12 Aug 12:59
0fb1d33
Compare
Choose a tag to compare
Merge pull request #48 from jwanner83/#3-documentation

#3 documentation