Skip to content

Commit 00c2ac9

Browse files
committed
Refactored main export
1 parent 54b8e2e commit 00c2ac9

4 files changed

Lines changed: 218 additions & 149 deletions

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lup-docker",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "NodeJS library to interact with the Docker engine.",
55
"main": "./lib/index",
66
"types": "./lib/index.d.ts",
@@ -10,6 +10,7 @@
1010
"exports": {
1111
".": "./lib/index.js",
1212
"./client": "./lib/client.js",
13+
"./stream": "./lib/stream.js",
1314
"./types": "./lib/types.js"
1415
},
1516
"scripts": {

src/__tests__/Docker.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import DockerClient from '../client';
22

3-
43
test('getContainers', async () => {
54
const client = new DockerClient();
65
const containers = await client.getContainers();

0 commit comments

Comments
 (0)