@eik/core 1.3.1 → 1.3.2
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.
- package/CHANGELOG.md +7 -0
- package/lib/main.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.3.2](https://github.com/eik-lib/core/compare/v1.3.1...v1.3.2) (2022-01-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Expose the internal test sink ([#299](https://github.com/eik-lib/core/issues/299)) ([c3c24a8](https://github.com/eik-lib/core/commit/c3c24a85b3e0be947bd1a06775cf3f92e8feb8e6))
|
|
7
|
+
|
|
1
8
|
## [1.3.1](https://github.com/eik-lib/core/compare/v1.3.0...v1.3.1) (2022-01-07)
|
|
2
9
|
|
|
3
10
|
|
package/lib/main.js
CHANGED
|
@@ -10,6 +10,7 @@ import PkgPut from './handlers/pkg.put.js';
|
|
|
10
10
|
import MapGet from './handlers/map.get.js';
|
|
11
11
|
import MapPut from './handlers/map.put.js';
|
|
12
12
|
|
|
13
|
+
import TEST from './sinks/test.js';
|
|
13
14
|
import MEM from './sinks/mem.js';
|
|
14
15
|
import FS from './sinks/fs.js';
|
|
15
16
|
|
|
@@ -31,6 +32,7 @@ const http = {
|
|
|
31
32
|
};
|
|
32
33
|
|
|
33
34
|
const sink = {
|
|
35
|
+
TEST,
|
|
34
36
|
MEM,
|
|
35
37
|
FS,
|
|
36
38
|
};
|