Skip to content

Commit 2e7e697

Browse files
committed
0.9.1
1 parent 7e9c406 commit 2e7e697

File tree

3 files changed

+30
-8
lines changed

3 files changed

+30
-8
lines changed

‎README.md‎

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ The commandline options are
5050
* `-d` or `--debug` to show debug messages when the browser reloads.
5151
* `-e` or `--exts` to specify extentions that you want to observe. Example: ` -e 'jade,scss'`. Removes the default extensions.
5252
* `-ee` or `--extraExts` to include additional extentions that you want to observe. Example: ` -ee 'jade,scss'`.
53-
* `-x` or `--exclusions` to specify additional exclusion patterns. Example: `-x html, images/`
53+
* `-x` or `--exclusions` to specify additional exclusion patterns. Example: `-x html, images/`.
5454
* `-u` or `--usepolling` to poll for file system changes. Set this to true to successfully watch files over a network.
55-
* `-w` or `--wait` to add a delay (in miliseconds) between when livereload detects a change to the filesystem and when it notifies the browser
55+
* `-w` or `--wait` to add a delay (in miliseconds) between when livereload detects a change to the filesystem and when it notifies the browser.
5656

5757
Specify the path when using the options.
5858

@@ -108,7 +108,7 @@ You can then start up the server which will listen on port `3000`.
108108

109109
### Server API
110110

111-
The `createServer()` method accepts two arguments.
111+
The `createServer()` method accepts two arguments.
112112

113113
The first are some configuration options, passed as a JavaScript object:
114114

@@ -169,14 +169,36 @@ Then run the server:
169169

170170
When `/User/Workspace/test/css/style.css` is modified, the stylesheet will be reloaded on the page.
171171

172+
# Developing livereload
173+
174+
This library is implemented in CoffeeScript 1.x. It may eventually be converted to JavaScript, but
175+
because there are many projects that depend on this library, the conversion isn't a priority.
176+
177+
To build the distributable versions, run `npm run build`.
178+
179+
Run `npm test` to run the test suite.
180+
181+
# Contributing
182+
183+
Contributions welcome, but remember that this library is meant to be small and serve its intended purpose only. Before submitting a pull request, open a new issue to discuss your feature or bug. Please
184+
check all open and closed issues.
185+
186+
When submitting code, please keep commits small, and do not modify the README file. Commit both the Coffee and JS files.
172187

173188
# Changelog
174189

190+
### 0.9.1
191+
* Fix issue with livereload.js not resolving properly on some projects (caseywebdev)
192+
* Update license to newer style to suppress "no license" messages.
193+
* Update test scripts to handle compilers properly, suppressing the deprecation notice
194+
* Deprecating the `cake` tasks for building the project.
195+
196+
175197
### 0.9.0
176198
* Serve Livereload client library from an NPM dependency instead of copying the code into the project - smhg
177199
* Update Chokidar to 3.3.0 which improves performance and reduces CPU load.
178200

179-
### 0.8.2
201+
### 0.8.2
180202
* Fix regression in 0.8.1 where broadcasting failed due to incompatibility between arrays and sets
181203
* Add debug message when broadcasting to each socket
182204
* Add debug message for the `input` message from clients
@@ -191,7 +213,7 @@ When `/User/Workspace/test/css/style.css` is modified, the stylesheet will be re
191213
### 0.7.0
192214
* Updates bundled Livereload.js file to v2.3.0 to fix console error.
193215
* BREAKING CHANGE: The `exts` and `e` options now **replace** the default extensions.
194-
* Adds the `extraExts` and `ee` options to preserve the old behavior of adding extensions to watch.
216+
* Adds the `extraExts` and `ee` options to preserve the old behavior of adding extensions to watch.
195217
* You can now use `server.on 'error'` in your code to catch the "port in use" message gracefully. The CLI now handles this nicely as well.
196218

197219
### 0.6.3
@@ -210,7 +232,7 @@ When `/User/Workspace/test/css/style.css` is modified, the stylesheet will be re
210232
* Fix default exclusions regex
211233

212234
### 0.6.0
213-
* Implements LiveReload protocol v7 so browser plugins work again.
235+
* Implements LiveReload protocol v7 so browser plugins work again.
214236
* Removes support for protocol v6
215237
* Introduces `noListen` option
216238
* Introduces optional callback which will be invoked when the LiveReload server is listening

‎package-lock.json‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "livereload",
33
"description": "LiveReload server",
4-
"version": "0.9.0",
4+
"version": "0.9.1",
55
"contributors": [
66
{
77
"name": "Brian P. Hogan",

0 commit comments

Comments
 (0)