@live-change/filesystem-plugin 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -122,7 +122,7 @@ async function observableList(dir, filter, mapper) {
122
122
  watcher.on('change', async (name, stat) => {
123
123
  if(path.dirname(name) != dir) return
124
124
  name = path.relative(dir, name)
125
- const entry = {
125
+ let entry = {
126
126
  name,
127
127
  isDirectory: false,
128
128
  stat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/filesystem-plugin",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {