diff --git a/CHANGELOG.md b/CHANGELOG.md index cb1800ec..9aefd8a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ ## Changelog -### 2021-02-012 +### 2021-05-25 + +**create-lwc-app 3.1.0** + +- Dependency updates and cleanup + - Changing the name of the initial created `serve` script to `start` to simplify deployments to cloud providers + - Updating to latest Husky setup + +**lwc-services 3.1.0** + +- Dependency updates and cleanup +- Moving to LWC 2.x (internal change: `@lwc/engine` is replaced by `@lwc/engine-dom`) +- Added new CLI flag `webpack-plugin-overrides` to allow override of built-in Webpack configuration + +**lwc-webpack-plugin 2.0.0** + +- Dependency updates and cleanup +- Moving to LWC 2.x (internal change: `@lwc/engine` is replaced by `@lwc/engine-dom`) + +### 2021-02-01 **lwc-services 3.0.4** diff --git a/README.md b/README.md index 9b07364f..0562c763 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,7 @@ OPTIONS -m, --mode=mode [default: development] defines the mode for the build (production|development) -n, --noclear setting this will not re-create the build dir -w, --webpack=webpack location of custom webpack configuration file, which will be merged into the default config + --webpack-plugin-override comma separated values containing names of webpack plugins you want to override EXAMPLES lwc-services build @@ -128,6 +129,7 @@ USAGE OPTIONS -d, --directory=directory (required) exports configuration files to the given directory -w, --webpack=webpack location of custom webpack configuration file + --webpack-plugin-override comma separated values containing names of webpack plugins you want to override EXAMPLE lwc-services sniff -d somedirectory @@ -166,12 +168,13 @@ USAGE $ lwc-services watch OPTIONS - -b, --bundler=webpack [default: webpack] defines the to be used bundler (webpack|rollup) - -i, --host=host [default: localhost] sets the hostname/IP address - -m, --mode=mode [default: development] defines the mode for the build (production|development) - -o, --open opens the site in the default browser - -p, --port=port [default: 3001] configures the port of the application - -w, --webpack=webpack location of custom webpack configuration file, which will be merged into the default config + -b, --bundler=webpack [default: webpack] defines the to be used bundler (webpack|rollup) + -i, --host=host [default: localhost] sets the hostname/IP address + -m, --mode=mode [default: development] defines the mode for the build (production|development) + -o, --open opens the site in the default browser + -p, --port=port [default: 3001] configures the port of the application + -w, --webpack=webpack location of custom webpack configuration file, which will be merged into the default config + --webpack-plugin-override comma separated values containing names of webpack plugins you want to override EXAMPLES lwc-services watch diff --git a/packages/create-lwc-app/package.json b/packages/create-lwc-app/package.json index f5898502..22dad97e 100644 --- a/packages/create-lwc-app/package.json +++ b/packages/create-lwc-app/package.json @@ -1,6 +1,6 @@ { "name": "create-lwc-app", - "version": "3.0.4", + "version": "3.1.0", "author": "René Winkelmeyer @muenzpraeger", "bin": { "create-lwc-app": "./bin/run" diff --git a/packages/lwc-services/package.json b/packages/lwc-services/package.json index dbdb60e0..3aee10c8 100644 --- a/packages/lwc-services/package.json +++ b/packages/lwc-services/package.json @@ -1,6 +1,6 @@ { "name": "lwc-services", - "version": "3.0.4", + "version": "3.1.0", "author": "René Winkelmeyer @muenzpraeger", "bin": { "lwc-services": "./bin/run" @@ -37,7 +37,7 @@ "html-webpack-plugin": "~5.3.1", "jest": "~26.6.3", "lwc": "~2.1.0", - "lwc-webpack-plugin": "~1.2.2", + "lwc-webpack-plugin": "~2.0.0", "node-emoji": "~1.10.0", "nodemon": "~2.0.7", "rimraf": "~3.0.2", diff --git a/packages/lwc-webpack-plugin/package.json b/packages/lwc-webpack-plugin/package.json index f80e0819..ee82e685 100644 --- a/packages/lwc-webpack-plugin/package.json +++ b/packages/lwc-webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "lwc-webpack-plugin", - "version": "1.2.2", + "version": "2.0.0", "author": "René Winkelmeyer @muenzpraeger", "description": "Webpack Plugin for LWC", "main": "dist/index.js",