We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b8e2e commit 00c2ac9Copy full SHA for 00c2ac9
4 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "lup-docker",
3
- "version": "1.0.0",
+ "version": "1.1.0",
4
"description": "NodeJS library to interact with the Docker engine.",
5
"main": "./lib/index",
6
"types": "./lib/index.d.ts",
@@ -10,6 +10,7 @@
10
"exports": {
11
".": "./lib/index.js",
12
"./client": "./lib/client.js",
13
+ "./stream": "./lib/stream.js",
14
"./types": "./lib/types.js"
15
},
16
"scripts": {
src/__tests__/Docker.test.ts
@@ -1,6 +1,5 @@
import DockerClient from '../client';
-
test('getContainers', async () => {
const client = new DockerClient();
const containers = await client.getContainers();
0 commit comments