Skip to content

Commit

Permalink
Release 1.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
es128 committed Jan 21, 2015
1 parent bb1ceee commit b40daac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
# Chokidar 1.0.0-rc1 (21 January 2015)
* Glob support for `watch` and `add` methods
* New `unwatch` method to turn off watching of previously watched paths
* More flexible `ignored` option allowing regex, function, glob, or array
* New options:
* `depth` for limiting recursion
* `alwaysStat` to ensure `fs.Stats` gets passed with every add/change event
* ICYMI
* 0.12 added full symlink support, `followSymlinks` and `atomic` options, and
`raw` event
* 0.11 added the `ready` event

# Chokidar 0.12.6 (6 January 2015)
* Fix bug which breaks `persistent: false` mode when change events occur

Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,8 @@ A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.
[![NPM](https://nodei.co/npm-dl/chokidar.png)](https://nodei.co/npm/chokidar/)
[![NPM](https://nodei.co/npm/chokidar.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/chokidar/)

#### [See what's new in v1.0](https://github.com/paulmillr/chokidar/blob/master/CHANGELOG.md#chokidar-100-rc1-21-january-2015)

## Why?
Node.js `fs.watch`:

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "chokidar",
"description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.",
"version": "0.12.6",
"version": "1.0.0-rc1",
"keywords": [
"fs",
"watch",
Expand Down

4 comments on commit b40daac

@floatdrop
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've try'd to install 1.0.0-rc1, but get only part of module:

❯ ll node_modules/chokidar
total 24
-rw-r--r--  1 floatdrop  593637566   7.7K Jan 21 16:44 README.md
drwxr-xr-x  6 floatdrop  593637566   204B Jan 21 16:54 node_modules
-rw-r--r--  1 floatdrop  593637566   2.0K Jan 21 16:54 package.json
❯ npm -v
1.4.28

I guess files is not picking up folders correctly.

@es128
Copy link
Collaborator Author

@es128 es128 commented on b40daac Jan 21, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh oh! I'll go check it out.

@es128
Copy link
Collaborator Author

@es128 es128 commented on b40daac Jan 21, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok well we're at 1.0.0-rc2 now... Glad I decided to go with the prereleases first 😥

@floatdrop
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@es128 sweet, thanks! It working now :)

Please sign in to comment.