From e5a8c51cc2ee5a2bd7840366fb0b2a6652af623e Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Thu, 14 Sep 2023 04:31:08 +0000 Subject: [PATCH] update default exports --- README.md | 5 ++--- deno.lock | 10 +++++++++- import_map.json | 2 +- mod.ts | 4 +--- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7f5c7b4..cfd1ee9 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,9 @@ dagger run fluentci . You can also use this pipeline programmatically: ```ts -import Client, { connect } from "https://sdk.fluentci.io/v0.1.5/mod.ts"; -import { Dagger } from "https://pkg.fluentci.io/android_pipeline/mod.ts"; +import Client, { connect } from "https://sdk.fluentci.io/v0.1.7/mod.ts"; +import { lintDebug, assembleDebug, debugTests } from "https://pkg.fluentci.io/android_pipeline@v0.6.0/mod.ts"; -const { lintDebug, assembleDebug, debugTests } = Dagger; function pipeline(src = ".") { connect(async (client: Client) => { diff --git a/deno.lock b/deno.lock index d5b3d7d..18d3a92 100644 --- a/deno.lock +++ b/deno.lock @@ -4,6 +4,9 @@ "https://cdn.jsdelivr.net/gh/tsirysndr/tar/deps.ts": "096395daebc7ed8a18f0484e4ffcc3a7f70e50946735f7df9611a7fcfd8272cc", "https://cdn.jsdelivr.net/gh/tsirysndr/tar/mod.ts": "e269d71c72ae68e82c1960e5db2a0c7419c97c9683ef717de0ab75d90f364713", "https://cdn.jsdelivr.net/gh/tsirysndr/tar/src/tar.ts": "8a2c1c4692cf92f70437509761dec291a660a85675602e4954de04e721d82ae4", + "https://cdn.jsdelivr.net/gh/tsirysndr/tar@v0.1.1/deps.ts": "096395daebc7ed8a18f0484e4ffcc3a7f70e50946735f7df9611a7fcfd8272cc", + "https://cdn.jsdelivr.net/gh/tsirysndr/tar@v0.1.1/mod.ts": "e269d71c72ae68e82c1960e5db2a0c7419c97c9683ef717de0ab75d90f364713", + "https://cdn.jsdelivr.net/gh/tsirysndr/tar@v0.1.1/src/tar.ts": "9b02eaaa784b225ad7a23d2769cd492adf113ea7c11c02e3646849e98f4ae43b", "https://deno.land/std@0.129.0/_util/assert.ts": "e94f2eb37cebd7f199952e242c77654e43333c1ac4c5c700e929ea3aa5489f74", "https://deno.land/std@0.129.0/_util/os.ts": "49b92edea1e82ba295ec946de8ffd956ed123e2948d9bd1d3e901b04e4307617", "https://deno.land/std@0.129.0/archive/tar.ts": "35ea1baddec7988cc4034765a2cee7613bc8074bd40940d3f5e98f63070a716a", @@ -198,7 +201,12 @@ "https://sdk.fluentci.io/v0.1.5/src/client.ts": "f44b27ae573b09d85089ce4e5c9a01c95926058fb41d26de23f0f6f5412ecf89", "https://sdk.fluentci.io/v0.1.5/src/connect.ts": "ddd4cbac2069427ad3b9106459207d63d392640f3c669c45b87e5049711dd338", "https://sdk.fluentci.io/v0.1.5/src/context.ts": "d711106c5f2dfb894d522d1541b18b0d81d47db603132070d6f743673924554b", - "https://sdk.fluentci.io/v0.1.5/src/utils.ts": "df9a823be6e127feb3e2e4261f3c0b3b31da888ba2bfc4b8b841ae4c2fcd3373" + "https://sdk.fluentci.io/v0.1.5/src/utils.ts": "df9a823be6e127feb3e2e4261f3c0b3b31da888ba2bfc4b8b841ae4c2fcd3373", + "https://sdk.fluentci.io/v0.1.7/mod.ts": "d04d9358605b672fc877e7ae8eaaef228773819e9c46bf581dd4a351b887ab7e", + "https://sdk.fluentci.io/v0.1.7/src/client.ts": "f44b27ae573b09d85089ce4e5c9a01c95926058fb41d26de23f0f6f5412ecf89", + "https://sdk.fluentci.io/v0.1.7/src/connect.ts": "ddd4cbac2069427ad3b9106459207d63d392640f3c669c45b87e5049711dd338", + "https://sdk.fluentci.io/v0.1.7/src/context.ts": "8d743af8bf20889bba51275da2b164580a8f3442ab1a2679843b0447d0d90cfb", + "https://sdk.fluentci.io/v0.1.7/src/utils.ts": "df9a823be6e127feb3e2e4261f3c0b3b31da888ba2bfc4b8b841ae4c2fcd3373" }, "npm": { "specifiers": { diff --git a/import_map.json b/import_map.json index 3f92694..1b59a7c 100644 --- a/import_map.json +++ b/import_map.json @@ -1,6 +1,6 @@ { "imports": { - "@fluentci.io/dagger": "https://sdk.fluentci.io/v0.1.5/mod.ts", + "@fluentci.io/dagger": "https://sdk.fluentci.io/v0.1.7/mod.ts", "@dagger.io/dagger": "https://esm.sh/v128/*@dagger.io/dagger@0.8.4", "graphql-tag": "https://esm.sh/v128/graphql-tag@2.12.6", "graphql-request": "https://esm.sh/v128/graphql-request@6.1.0", diff --git a/mod.ts b/mod.ts index 2c3acca..fbc1f17 100644 --- a/mod.ts +++ b/mod.ts @@ -1,3 +1 @@ -import * as Dagger from "./src/dagger/index.ts"; - -export { Dagger }; +export * from "./src/dagger/index.ts";