asset-pipe-sink-mem
Advanced tools
Comparing version 1.0.0-beta.3 to 1.0.0-beta.4
@@ -47,7 +47,7 @@ 'use strict'; | ||
setImmediate(() => { | ||
this.emit('file found'); | ||
this.emit('file found', this.file); | ||
}); | ||
} else { | ||
setImmediate(() => { | ||
this.emit('file not found', new Error('file not found')); | ||
this.emit('file not found', this.file); | ||
}); | ||
@@ -54,0 +54,0 @@ } |
{ | ||
"name": "asset-pipe-sink-mem", | ||
"version": "1.0.0-beta.3", | ||
"version": "1.0.0-beta.4", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "Trygve Lie", |
@@ -82,4 +82,4 @@ # asset-pipe-sink-mem | ||
- `file found` - When the file we want to read is found. | ||
- `file not saved` - When the file we want to read is not found. Emits with: `error`. | ||
- `file found` - When the file we want to read is found. Emits with: `file` | ||
- `file not saved` - When the file we want to read is not found. Emits with: `file`. | ||
@@ -86,0 +86,0 @@ |
6204