fix(dev-server-hmr): fix package name

This commit is contained in:
Lars den Bakker
2020-11-23 19:26:12 +01:00
parent 4781d9129c
commit 7900cf742a
3 changed files with 9 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
---
'@open-wc/dev-server-hmr': patch
---
fix package name

View File

@@ -13,7 +13,7 @@ HMR requires the web component base class to implement a `hotReplaceCallback`.
Install the package:
```
npm i --save-dev @web/dev-server-hmr
npm i --save-dev @open-wc/dev-server-hmr
```
Add the plugin to your `web-dev-server-config.mjs`:

View File

@@ -1,5 +1,5 @@
{
"name": "@open-wc/dev-server-wc-hmr",
"name": "@open-wc/dev-server-hmr",
"version": "0.0.1",
"publishConfig": {
"access": "public"
@@ -9,10 +9,10 @@
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/dev-server-wc-hmr"
"directory": "packages/dev-server-hmr"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/packages/dev-server-wc-hmr",
"homepage": "https://github.com/open-wc/open-wc/packages/dev-server-hmr",
"main": "dist/index.js",
"scripts": {
"start:fast": "wds --config demo/fast-element/server.config.mjs",