Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit dd7dd9a

Browse files
authored
feat: release time 🎉 (#880)
1 parent 2167ef2 commit dd7dd9a

File tree

5 files changed

+33
-11
lines changed

5 files changed

+33
-11
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
## Changelog
22

3-
### 2021-02-012
3+
### 2021-05-25
4+
5+
**create-lwc-app 3.1.0**
6+
7+
- Dependency updates and cleanup
8+
- Changing the name of the initial created `serve` script to `start` to simplify deployments to cloud providers
9+
- Updating to latest Husky setup
10+
11+
**lwc-services 3.1.0**
12+
13+
- Dependency updates and cleanup
14+
- Moving to LWC 2.x (internal change: `@lwc/engine` is replaced by `@lwc/engine-dom`)
15+
- Added new CLI flag `webpack-plugin-overrides` to allow override of built-in Webpack configuration
16+
17+
**lwc-webpack-plugin 2.0.0**
18+
19+
- Dependency updates and cleanup
20+
- Moving to LWC 2.x (internal change: `@lwc/engine` is replaced by `@lwc/engine-dom`)
21+
22+
### 2021-02-01
423

524
**lwc-services 3.0.4**
625

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ OPTIONS
111111
-m, --mode=mode [default: development] defines the mode for the build (production|development)
112112
-n, --noclear setting this will not re-create the build dir
113113
-w, --webpack=webpack location of custom webpack configuration file, which will be merged into the default config
114+
--webpack-plugin-override comma separated values containing names of webpack plugins you want to override
114115
115116
EXAMPLES
116117
lwc-services build
@@ -128,6 +129,7 @@ USAGE
128129
OPTIONS
129130
-d, --directory=directory (required) exports configuration files to the given directory
130131
-w, --webpack=webpack location of custom webpack configuration file
132+
--webpack-plugin-override comma separated values containing names of webpack plugins you want to override
131133
132134
EXAMPLE
133135
lwc-services sniff -d somedirectory
@@ -166,12 +168,13 @@ USAGE
166168
$ lwc-services watch
167169
168170
OPTIONS
169-
-b, --bundler=webpack [default: webpack] defines the to be used bundler (webpack|rollup)
170-
-i, --host=host [default: localhost] sets the hostname/IP address
171-
-m, --mode=mode [default: development] defines the mode for the build (production|development)
172-
-o, --open opens the site in the default browser
173-
-p, --port=port [default: 3001] configures the port of the application
174-
-w, --webpack=webpack location of custom webpack configuration file, which will be merged into the default config
171+
-b, --bundler=webpack [default: webpack] defines the to be used bundler (webpack|rollup)
172+
-i, --host=host [default: localhost] sets the hostname/IP address
173+
-m, --mode=mode [default: development] defines the mode for the build (production|development)
174+
-o, --open opens the site in the default browser
175+
-p, --port=port [default: 3001] configures the port of the application
176+
-w, --webpack=webpack location of custom webpack configuration file, which will be merged into the default config
177+
--webpack-plugin-override comma separated values containing names of webpack plugins you want to override
175178
176179
EXAMPLES
177180
lwc-services watch

packages/create-lwc-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-lwc-app",
3-
"version": "3.0.4",
3+
"version": "3.1.0",
44
"author": "René Winkelmeyer @muenzpraeger",
55
"bin": {
66
"create-lwc-app": "./bin/run"

packages/lwc-services/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lwc-services",
3-
"version": "3.0.4",
3+
"version": "3.1.0",
44
"author": "René Winkelmeyer @muenzpraeger",
55
"bin": {
66
"lwc-services": "./bin/run"
@@ -37,7 +37,7 @@
3737
"html-webpack-plugin": "~5.3.1",
3838
"jest": "~26.6.3",
3939
"lwc": "~2.1.0",
40-
"lwc-webpack-plugin": "~1.2.2",
40+
"lwc-webpack-plugin": "~2.0.0",
4141
"node-emoji": "~1.10.0",
4242
"nodemon": "~2.0.7",
4343
"rimraf": "~3.0.2",

packages/lwc-webpack-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lwc-webpack-plugin",
3-
"version": "1.2.2",
3+
"version": "2.0.0",
44
"author": "René Winkelmeyer @muenzpraeger",
55
"description": "Webpack Plugin for LWC",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)