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

+1-1
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

+1-2
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

+2
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

+1-1
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

+1-2
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

+3-1
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

+1-1
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

-2
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

+2
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

+2
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

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

+2
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 are empty (0 bytes)
7+
*
68
* @function
79
* @description Scan files and check if they are empty (0 bytes).
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/file-nullbyte-char.ts

+2
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 a null-byte character (\x00)
7+
*
68
* @function
79
* @description Scan files and check if they contain a null-byte character (\x00).
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/file-trailing-newline.ts

+2
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 a trailing newline
7+
*
68
* @function
79
* @description Scan files and check if they contain a trailing newline.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/file-trailing-single-newline.ts

+2
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 exactly one trailing newline
7+
*
68
* @function
79
* @description Scan files and check if they contain exactly one trailing newline.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/file-trailing-space.ts

+2
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 trailing whitespaces
7+
*
68
* @function
79
* @description Scan files and check if they contain trailing whitespaces.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/file-utf8-bom.ts

+2
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 BOM (Byte Order Mark): <U+FEFF>
7+
*
68
* @function
79
* @description Scan files and check if they contain BOM (Byte Order Mark): <U+FEFF>.
810
* @param {string | Directory | undefined} src

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

+2
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 have a non UTF-8 encoding
7+
*
68
* @function
79
* @description Scan files and check if they have a non UTF-8 encoding.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/git-conflicts.ts

+2
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 git conflicts
7+
*
68
* @function
79
* @description Scan files and check if they contain git conflicts.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/git-ignored.ts

+2
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 git directory and see if ignored files are still in git cache
7+
*
68
* @function
79
* @description Scan git directory and see if ignored files are still in git cache.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/inline-css.ts

+2
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 inline css code
7+
*
68
* @function
79
* @description Scan files and check if they contain inline css code.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/inline-js.ts

+2
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 inline javascript code
7+
*
68
* @function
79
* @description Scan files and check if they contain inline javascript code.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-bash.ts

+2
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 shell files for bash syntax errors
7+
*
68
* @function
79
* @description Scan shell files for bash syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-css.ts

+2
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 CSS files for CSS syntax errors
7+
*
68
* @function
79
* @description Scan CSS files for CSS syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-js.ts

+2
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 JS files for JS syntax errors
7+
*
68
* @function
79
* @description Scan JS files for JS syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-json.ts

+2
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 for JSON syntax errors
7+
*
68
* @function
79
* @description Scan files for JSON syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-markdown.ts

+2
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 for Markdown syntax errors
7+
*
68
* @function
79
* @description Scan files for Markdown syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-perl.ts

+2
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 Perl files for Perl syntax errors
7+
*
68
* @function
79
* @description Scan Perl files for Perl syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-php.ts

+2
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 PHP files for PHP syntax errors
7+
*
68
* @function
79
* @description Scan PHP files for PHP syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-python.ts

+2
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 Python files for Python syntax errors
7+
*
68
* @function
79
* @description Scan Python files for Python syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-ruby.ts

+2
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 Ruby files for Ruby syntax errors
7+
*
68
* @function
79
* @description Scan Ruby files for Ruby syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-scss.ts

+2
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 SCSS files for SCSS syntax errors
7+
*
68
* @function
79
* @description Scan SCSS files for SCSS syntax errors.
810
* @param {string | Directory | undefined} src

awesome-ci/src/dagger/jobs/syntax-sh.ts

+2
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 sh files for /bin/sh syntax errors
7+
*
68
* @function
79
* @description Scan sh files for /bin/sh syntax errors.
810
* @param {string | Directory | undefined} src

checkmake/deno.json

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

checkmake/src/dagger/index.ts

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

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

checkmake/src/dagger/jobs.ts

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export enum Job {
1313
export const exclude = [];
1414

1515
/**
16+
* Lint Makefiles
17+
*
1618
* @function
1719
* @description Lint Makefiles.
1820
* @param {string | Directory | undefined} src

flakestry/deno.json

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

flakestry/src/dagger/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pipeline from "./pipeline.ts";
21
import { publish, jobDescriptions } from "./jobs.ts";
32

4-
export { pipeline, publish, jobDescriptions };
3+
export { publish, jobDescriptions };

flakestry/src/dagger/jobs.ts

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export enum Job {
1313
export const exclude = [];
1414

1515
/**
16+
* Publish a flake to flakestry.dev
17+
*
1618
* @function
1719
* @description Publish a flake to flakestry.dev
1820
* @param {string | Directory} src

jsonlint/deno.json

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

jsonlint/src/dagger/index.ts

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

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

jsonlint/src/dagger/jobs.ts

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ export enum Job {
1313
export const exclude = [];
1414

1515
/**
16+
* Lint JSON files
17+
*
1618
* @function
1719
* @description Lint JSON files.
1820
* @param {string | Directory | undefined} src

kubeconform/deno.json

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

kubeconform/src/dagger/index.ts

+1-2
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 };

r2-sync/deno.json

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

r2-sync/src/dagger/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pipeline from "./pipeline.ts";
21
import { dev, upload, jobDescriptions } from "./jobs.ts";
32

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

r2-sync/src/dagger/jobs.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ export enum Job {
1414
export const exclude = [];
1515

1616
/**
17+
* Upload files to Cloudlare R2 bucket
18+
*
1719
* @function
18-
* @description Uploads files to Cloudlare R2 bucket.
20+
* @description Upload files to Cloudlare R2 bucket.
1921
* @param {string | Directory | undefined} src
2022
* @param {Secret | string} accessKey
2123
* @param {Secret | string} secretKey

0 commit comments

Comments
 (0)