Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Mar 10, 2024
1 parent afbad80 commit a4a8b76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluentci/nodejs",
"version": "0.7.0",
"version": "0.7.1",
"exports": "./mod.ts",
"importMap": "import_map.json",
"tasks": {
Expand Down
7 changes: 1 addition & 6 deletions example/.fluentci/src/dagger/pipeline.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
import { uploadContext } from "../../deps.ts";
import * as jobs from "./jobs.ts";

const { test, runnableJobs, exclude } = jobs;
const { test, runnableJobs } = jobs;

export default async function pipeline(src = ".", args: string[] = []) {
if (Deno.env.has("FLUENTCI_SESSION_ID")) {
await uploadContext(src, exclude);
}

if (args.length > 0) {
await runSpecificJobs(args as jobs.Job[]);
return;
Expand Down
7 changes: 1 addition & 6 deletions src/dagger/pipeline.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
import { uploadContext } from "../../deps.ts";
import * as jobs from "./jobs.ts";

const { test, runnableJobs, exclude } = jobs;
const { test, runnableJobs } = jobs;

export default async function pipeline(src = ".", args: string[] = []) {
if (Deno.env.has("FLUENTCI_SESSION_ID")) {
await uploadContext(src, exclude);
}

if (args.length > 0) {
await runSpecificJobs(args as jobs.Job[]);
return;
Expand Down

0 comments on commit a4a8b76

Please sign in to comment.