Skip to content

Commit 93b3842

Browse files
committed
update docs
1 parent b030c2a commit 93b3842

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+93
-38
lines changed

ansible-lint/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@daggerverse/ansible-lint",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"exports": "./mod.ts",
55
"importMap": "import_map.json",
66
"tasks": {

ansible-lint/src/dagger/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pipeline from "./pipeline.ts";
21
import { lint, dev, jobDescriptions } from "./jobs.ts";
32

4-
export { pipeline, lint, dev, jobDescriptions };
3+
export { lint, dev, jobDescriptions };

ansible-lint/src/dagger/jobs.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ export enum Job {
1414
export const exclude = [];
1515

1616
/**
17+
* Lint ansible YAML files
18+
*
1719
* @function
1820
* @description Lint ansible YAML files.
1921
* @param {string | Directory | undefined} src

ansible/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@daggerverse/ansible",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"exports": "./mod.ts",
55
"importMap": "import_map.json",
66
"tasks": {

ansible/src/dagger/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pipeline from "./pipeline.ts";
21
import { playbook, dev, jobDescriptions } from "./jobs.ts";
32

4-
export { pipeline, playbook, dev, jobDescriptions };
3+
export { playbook, dev, jobDescriptions };

ansible/src/dagger/jobs.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ export enum Job {
1313
export const exclude = [];
1414

1515
/**
16+
* Run a playbook
17+
*
1618
* @function
17-
* @description Runs a playbook.
19+
* @description Run a playbook.
1820
* @param {string | Directory | undefined} src
1921
* @param {string} playbook
2022
* @param {string} tag

awesome-ci/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@daggerverse/awesome-ci",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"exports": "./mod.ts",
55
"importMap": "import_map.json",
66
"tasks": {

awesome-ci/src/dagger/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ import { syntaxPython } from "./jobs/syntax-python.ts";
2424
import { syntaxRuby } from "./jobs/syntax-ruby.ts";
2525
import { syntaxScss } from "./jobs/syntax-scss.ts";
2626
import { syntaxSh } from "./jobs/syntax-sh.ts";
27-
import pipeline from "./pipeline.ts";
2827

2928
export {
30-
pipeline,
3129
dev,
3230
gitConflicts,
3331
gitIgnored,

awesome-ci/src/dagger/jobs/file-cr.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { getDirectory } from "../lib.ts";
33
import { Job } from "./mod.ts";
44

55
/**
6+
* Scan files and check if they contain CR (Carriage Return only)
7+
*
68
* @function
79
* @description Scan files and check if they contain CR (Carriage Return only).
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/file-crlf.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { getDirectory } from "../lib.ts";
33
import { Job } from "./mod.ts";
44

55
/**
6+
* Scan files and check if they contain CRLF (Windows Line Feeds)
7+
*
68
* @function
79
* @description Scan files and check if they contain CRLF (Windows Line Feeds).
810
* @param {string | Directory | undefined} src

0 commit comments

Comments
 (0)