Skip to content

Commit

Permalink
Merge pull request #9 from fluent-ci-templates/chore/default-exports
Browse files Browse the repository at this point in the history
update default exports
  • Loading branch information
tsirysndr authored Sep 14, 2023
2 parents 896701c + e5a8c51 commit f7ae231
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
10 changes: 9 additions & 1 deletion deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion import_map.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 1 addition & 3 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import * as Dagger from "./src/dagger/index.ts";

export { Dagger };
export * from "./src/dagger/index.ts";

0 comments on commit f7ae231

Please sign in to comment.