Skip to content

Commit a594a00

Browse files
committed
update readme
update readme
1 parent 3e56015 commit a594a00

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ $ npm install smooth-server --save-dev
1919
},
2020
```
2121

22-
With the above script entry, you can then start `lite-server` via:
22+
With the above script entry, you can then start `smoot-server` via:
2323
```bash
2424
$ npm run dev
2525
```
2626

2727
### Global Installation
2828

29-
lite-server can be also installed globally, if preferred:
29+
smoot-server can be also installed globally, if preferred:
3030
```bash
31-
$ npm install -g lite-server
31+
$ npm install -g smoot-server
3232

3333
# To run:
3434
$ smooth-server
@@ -39,7 +39,7 @@ $ smooth-server --config path/smooth-server.config.json
3939

4040
The default behavior serves from the current folder, opens a browser, and applies a HTML5 route fallback to `./index.html`.
4141

42-
lite-server uses [BrowserSync](https://www.browsersync.io/), and allows for configuration overrides via a local `bs-config.json` or `bs-config.js` file in your project.
42+
smoot-server uses [BrowserSync](https://www.browsersync.io/), and allows for configuration overrides via a local `bs-config.json` or `bs-config.js` file in your project.
4343

4444
You can provide custom path to your config file via `-c` or `--config=` run time options:
4545
```bash
@@ -67,7 +67,7 @@ module.exports = {
6767
};
6868
```
6969

70-
The `bs-config.js` file may also export a function that receives the lite-server Browsersync instance as its only argument. While not required, the return value of this function will be used to extend the default lite-server configuration.
70+
The `bs-config.js` file may also export a function that receives the smoot-server Browsersync instance as its only argument. While not required, the return value of this function will be used to extend the default smoot-server configuration.
7171
```js
7272
module.exports = function(bs) {
7373

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "smooth-server",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Little node server based on lite-server and browsersync",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)