Skip to content

Commit 1301e3d

Browse files
committed
feat: Updated to new documentation url
1 parent f0e685c commit 1301e3d

Some content is hidden

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

43 files changed

+44
-43
lines changed

src/resources/android/android-studio.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ export const schema = z.object({
2121
'The directory to install Android Studios into. Defaults to /Applications'
2222
)
2323
.optional(),
24-
})
24+
}).meta({ $comment: 'https://codifycli.com/docs/resources/android-studio' })
25+
2526
export type AndroidStudioConfig = z.infer<typeof schema>;
2627

2728
export class AndroidStudioResource extends Resource<AndroidStudioConfig> {

src/resources/apt/apt-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/apt.json",
4-
"$comment": "https://codifycli.com/docs/core-resources/apt/",
4+
"$comment": "https://codifycli.com/docs/resources/apt/",
55
"title": "Apt resource",
66
"description": "Manage apt packages on Debian-based systems.",
77
"type": "object",

src/resources/asdf/asdf-install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const schema = z.object({
2626
.string()
2727
.describe('The directory to run the install command')
2828
.optional(),
29-
});
29+
}).meta({ $comment: 'https://codifycli.com/docs/resources/asdf/asdf-install' });
3030

3131
export type AsdfInstallConfig = z.infer<typeof schema>;
3232
const CURRENT_VERSION_REGEX = /^([^ ]+?)\s+([^ ]+?)\s+.*/;

src/resources/asdf/asdf-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const schema = z
2222
.string()
2323
.describe('The gitUrl of the plugin')
2424
.optional()
25-
})
25+
}).meta({ $comment: 'https://codifycli.com/docs/resources/asdf/asdf-plugin' });
2626
export type AsdfPluginConfig = z.infer<typeof schema>;
2727

2828
const PLUGIN_LIST_REGEX = /^([^ ]+?)\s+([^ ]+)/

src/resources/asdf/asdf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const schema = z.object({
1414
'Asdf plugins to install. See: https://github.com/asdf-community for a full list'
1515
)
1616
.optional()
17-
})
17+
}).meta({ $comment: 'https://codifycli.com/docs/resources/asdf/asdf' });
1818

1919
export type AsdfConfig = z.infer<typeof schema>
2020

src/resources/aws-cli/cli/aws-cli-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/aws-cli.json",
4-
"$comment": "https://codifycli.com/docs/core-resources/aws-cli/",
4+
"$comment": "https://codifycli.com/docs/resources/aws-cli/",
55
"title": "Aws-CLI resource",
66
"type": "object",
77
"description": "Installs aws-cli.",

src/resources/aws-cli/profile/aws-profile-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/aws-profile.json",
4-
"$comment": "https://codifycli.com/docs/core-resources/aws-profile/",
4+
"$comment": "https://codifycli.com/docs/resources/aws-profile/",
55
"title": "Aws-CLI configure resource",
66
"type": "object",
77
"description": "Configures AWS profiles.",

src/resources/dnf/dnf-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/dnf.json",
4-
"$comment": "https://codifycli.com/docs/core-resources/dnf/",
4+
"$comment": "https://codifycli.com/docs/resources/dnf/",
55
"title": "Dnf resource",
66
"description": "Manage dnf packages on modern Red Hat-based systems.",
77
"type": "object",

src/resources/docker/docker-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/docker.json",
4-
"$comment": "https://codifycli.com/docs/core-resources/docker/",
4+
"$comment": "https://codifycli.com/docs/resources/docker/",
55
"title": "Docker resource",
66
"type": "object",
77
"description": "Installs docker.",

src/resources/file/file.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const schema = z.object({
1414
'Forces the resource to only create the file if it doesn\'t exist but don\'t detect any content changes.'
1515
)
1616
.optional()
17-
})
17+
}) .meta({ $comment: 'https://codifycli.com/docs/resources/scripting/file' })
1818

1919
type FileConfig = z.infer<typeof schema>;
2020

0 commit comments

Comments
 (0)