Skip to content

Commit a1d82ea

Browse files
committed
setup jsr
fix terraform-docs module
1 parent 25851ff commit a1d82ea

Some content is hidden

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

54 files changed

+5749
-6820
lines changed

ansible-lint/deno.lock

+194-232
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ansible-lint/deps.ts

+19-30
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
1-
export { assertEquals } from "https://deno.land/std@0.191.0/testing/asserts.ts";
1+
export { assertEquals } from "jsr:@std/testing@0.218.2/asserts";
22

3-
export { dag, Container, Directory } from "./sdk/client.gen.ts";
4-
export type { DirectoryID } from "./sdk/client.gen.ts";
5-
export { connect, uploadContext } from "https://sdk.fluentci.io/v0.3.0/mod.ts";
6-
export { brightGreen } from "https://deno.land/[email protected]/fmt/colors.ts";
7-
export { withDevbox } from "https://nix.fluentci.io/v0.5.3/src/dagger/steps.ts";
8-
export { stringifyTree } from "https://esm.sh/[email protected]";
9-
import gql from "https://esm.sh/[email protected]";
3+
export type { DirectoryID, SecretID } from "./sdk/client.gen.ts";
4+
export { dag, Directory, Secret, Container } from "./sdk/client.gen.ts";
5+
export { brightGreen } from "jsr:@std/[email protected]/colors";
6+
export { stringifyTree } from "npm:[email protected]";
7+
import { gql } from "npm:[email protected]";
108
export { gql };
9+
export { dirname, join, resolve } from "jsr:@std/[email protected]";
10+
export { parse } from "jsr:@std/[email protected]";
1111

12-
export {
13-
dirname,
14-
join,
15-
resolve,
16-
} from "https://deno.land/[email protected]/path/mod.ts";
17-
export { parse } from "https://deno.land/[email protected]/flags/mod.ts";
18-
export { snakeCase, camelCase } from "https://cdn.skypack.dev/lodash";
12+
import * as _ from "npm:[email protected]";
13+
const snakeCase = _.default.snakeCase;
14+
const camelCase = _.default.camelCase;
15+
export { snakeCase, camelCase };
1916

20-
export {
21-
ClientError,
22-
GraphQLClient,
23-
} from "https://esm.sh/v128/[email protected]";
17+
export { ClientError, GraphQLClient } from "npm:[email protected]";
2418
export {
2519
DaggerSDKError,
2620
UnknownDaggerError,
@@ -34,15 +28,10 @@ export {
3428
EngineSessionConnectionTimeoutError,
3529
NotAwaitedRequestError,
3630
ERROR_CODES,
37-
} from "https://esm.sh/@dagger.io/[email protected]";
38-
39-
export type {
40-
CallbackFct,
41-
ConnectOpts,
42-
} from "https://sdk.fluentci.io/v0.3.0/mod.ts";
31+
} from "./sdk/common/errors/index.ts";
4332

44-
export * as FluentGitlabCI from "https://deno.land/x/[email protected]/mod.ts";
45-
export * as FluentGithubActions from "https://deno.land/x/[email protected]/mod.ts";
46-
export * as FluentCircleCI from "https://deno.land/x/[email protected]/mod.ts";
47-
export * as FluentAzurePipelines from "https://deno.land/x/[email protected]/mod.ts";
48-
export * as FluentAWSCodePipeline from "https://deno.land/x/[email protected]/mod.ts";
33+
export * as FluentGitlabCI from "jsr:@tsirysndr/[email protected]";
34+
export * as FluentGithubActions from "jsr:@tsirysndr/[email protected]";
35+
export * as FluentCircleCI from "jsr:@tsirysndr/[email protected]";
36+
export * as FluentAzurePipelines from "jsr:@tsirysndr/[email protected]";
37+
export * as FluentAWSCodePipeline from "jsr:@tsirysndr/[email protected]";

ansible/deno.lock

+194-232
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ansible/deps.ts

+20-30
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
1-
export { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
2-
export { Container, Directory, dag } from "./sdk/client.gen.ts";
3-
export type { DirectoryID } from "./sdk/client.gen.ts";
4-
export { connect, uploadContext } from "https://sdk.fluentci.io/v0.3.0/mod.ts";
5-
export { brightGreen } from "https://deno.land/[email protected]/fmt/colors.ts";
6-
export { withDevbox } from "https://nix.fluentci.io/v0.5.3/src/dagger/steps.ts";
7-
export { stringifyTree } from "https://esm.sh/[email protected]";
8-
import gql from "https://esm.sh/[email protected]";
1+
export { assertEquals } from "jsr:@std/[email protected]/asserts";
2+
3+
export type { DirectoryID, SecretID } from "./sdk/client.gen.ts";
4+
export { dag, Directory, Secret, Container } from "./sdk/client.gen.ts";
5+
export { brightGreen } from "jsr:@std/[email protected]/colors";
6+
export { stringifyTree } from "npm:[email protected]";
7+
import { gql } from "npm:[email protected]";
98
export { gql };
9+
export { dirname, join, resolve } from "jsr:@std/[email protected]";
10+
export { parse } from "jsr:@std/[email protected]";
1011

11-
export {
12-
dirname,
13-
join,
14-
resolve,
15-
} from "https://deno.land/[email protected]/path/mod.ts";
16-
export { parse } from "https://deno.land/[email protected]/flags/mod.ts";
17-
export { snakeCase, camelCase } from "https://cdn.skypack.dev/lodash";
12+
import * as _ from "npm:[email protected]";
13+
const snakeCase = _.default.snakeCase;
14+
const camelCase = _.default.camelCase;
15+
export { snakeCase, camelCase };
1816

19-
export {
20-
ClientError,
21-
GraphQLClient,
22-
} from "https://esm.sh/v128/[email protected]";
17+
export { ClientError, GraphQLClient } from "npm:[email protected]";
2318
export {
2419
DaggerSDKError,
2520
UnknownDaggerError,
@@ -33,15 +28,10 @@ export {
3328
EngineSessionConnectionTimeoutError,
3429
NotAwaitedRequestError,
3530
ERROR_CODES,
36-
} from "https://esm.sh/@dagger.io/[email protected]";
37-
38-
export type {
39-
CallbackFct,
40-
ConnectOpts,
41-
} from "https://sdk.fluentci.io/v0.3.0/mod.ts";
31+
} from "./sdk/common/errors/index.ts";
4232

43-
export * as FluentGitlabCI from "https://deno.land/x/[email protected]/mod.ts";
44-
export * as FluentGithubActions from "https://deno.land/x/[email protected]/mod.ts";
45-
export * as FluentCircleCI from "https://deno.land/x/[email protected]/mod.ts";
46-
export * as FluentAzurePipelines from "https://deno.land/x/[email protected]/mod.ts";
47-
export * as FluentAWSCodePipeline from "https://deno.land/x/[email protected]/mod.ts";
33+
export * as FluentGitlabCI from "jsr:@tsirysndr/[email protected]";
34+
export * as FluentGithubActions from "jsr:@tsirysndr/[email protected]";
35+
export * as FluentCircleCI from "jsr:@tsirysndr/[email protected]";
36+
export * as FluentAzurePipelines from "jsr:@tsirysndr/[email protected]";
37+
export * as FluentAWSCodePipeline from "jsr:@tsirysndr/[email protected]";

0 commit comments

Comments
 (0)