Skip to content

Commit

Permalink
update module exports
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Mar 4, 2024
1 parent b037023 commit 163bb8d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 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/microcks",
"version": "0.1.4",
"version": "0.1.5",
"exports": "./mod.ts",
"importMap": "import_map.json",
"tasks": {
Expand Down
3 changes: 1 addition & 2 deletions src/dagger/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pipeline from "./pipeline.ts";
import { importApiSpecs, runTests, jobDescriptions } from "./jobs.ts";

export { importApiSpecs, runTests, pipeline, jobDescriptions };
export { importApiSpecs, runTests, jobDescriptions };
4 changes: 4 additions & 0 deletions src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export enum Job {
export const exclude = [];

/**
* Import API specifications into Microcks
*
* @function
* @description Import API specifications into Microcks
* @param src {src: string | Directory | undefined}
Expand Down Expand Up @@ -73,6 +75,8 @@ export async function importApiSpecs(
}

/**
* Launch a Microcks test on an API endpoint
*
* @function
* @description Launch a Microcks test on an API endpoint
* @param apiNameAndVersion {apiNameAndVersion: string}
Expand Down

0 comments on commit 163bb8d

Please sign in to comment.