diff options
author | Valentin Popov <info@valentineus.link> | 2019-09-03 15:08:45 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-09-03 15:08:45 +0300 |
commit | 04479075d9a35fc6a01ae91f714524023fe99e16 (patch) | |
tree | 92313a918267c6b16936c22920671c1c99578ab1 | |
parent | 8147b911dec725f50fb79e22dd149e13eca02d81 (diff) | |
download | electron-hot-reload-04479075d9a35fc6a01ae91f714524023fe99e16.tar.xz electron-hot-reload-04479075d9a35fc6a01ae91f714524023fe99e16.zip |
Updated the name project
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | package.json | 4 |
2 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@ -# ElectronJS Live Reload +# ElectronJS Hot Reload It is a simple method to restart your application. @@ -15,16 +15,16 @@ First, you should install this package: ```bash # Yarn -yarn add electron-live-reload +yarn add electron-hot-reload # NPM -npm install --save electron-live-reload +npm install --save electron-hot-reload ``` Next, you should create watchers: ```javascript -import { mainReloader, rendererReloader } from 'electron-live-reload'; +import { mainReloader, rendererReloader } from 'electron-hot-reload'; import { app } from 'electron'; import path from 'path'; diff --git a/package.json b/package.json index b2d2802..015aa3f 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { "description": "It is a simple method to restart your application.", - "name": "electron-live-reload", + "name": "electron-hot-reload", "version": "0.1.0", "main": "dist/index.js", - "repository": "git@github.com:valentineus/electron-live-reload.git", + "repository": "git@github.com:valentineus/electron-hot-reload.git", "author": { "email": "info@valentineus.link", "name": "Valentin Popov", |