Skip to content

Commit

Permalink
update prelude.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jan 23, 2024
1 parent 950bfb0 commit 5930b48
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/cmd/repl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async function repl({ debug }: { debug?: boolean }, pipelines: string[]) {
args: [
"repl",
"-A",
"--eval-file=https://cdn.jsdelivr.net/gh/fluentci-io/fluentci@0c8a9aa/src/prelude.ts",
"--eval-file=https://cdn.jsdelivr.net/gh/fluentci-io/fluentci@950bfb0/src/prelude.ts",
...args,
],
env: {
Expand Down
36 changes: 18 additions & 18 deletions src/prelude.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
import run from "https://deno.land/x/fluentci/src/cmd/run.ts";
import init from "https://deno.land/x/fluentci/src/cmd/init.ts";
import search from "https://deno.land/x/fluentci/src/cmd/search.ts";
import run from "https://deno.land/x/fluentci@v0.11.3/src/cmd/run.ts";
import init from "https://deno.land/x/fluentci@v0.11.3/src/cmd/init.ts";
import search from "https://deno.land/x/fluentci@v0.11.3/src/cmd/search.ts";
import upgrade, {
checkForUpdate,
} from "https://deno.land/x/fluentci/src/cmd/upgrade.ts";
import listJobs from "https://deno.land/x/fluentci/src/cmd/list.ts";
import generateWorkflow from "https://deno.land/x/fluentci/src/cmd/github.ts";
import generateGitlabCIConfig from "https://deno.land/x/fluentci/src/cmd/gitlab.ts";
import generateAWSCodePipelineConfig from "https://deno.land/x/fluentci/src/cmd/aws.ts";
import generateAzurePipelinesConfig from "https://deno.land/x/fluentci/src/cmd/azure.ts";
import generateCircleCIConfig from "https://deno.land/x/fluentci/src/cmd/circleci.ts";
import docs from "https://deno.land/x/fluentci/src/cmd/docs.ts";
import cache from "https://deno.land/x/fluentci/src/cmd/cache.ts";
import doctor from "https://deno.land/x/fluentci/src/cmd/doctor.ts";
import showEnvs from "https://deno.land/x/fluentci/src/cmd/env.ts";
import login from "https://deno.land/x/fluentci/src/cmd/login.ts";
import publish from "https://deno.land/x/fluentci/src/cmd/publish.ts";
} from "https://deno.land/x/fluentci@v0.11.3/src/cmd/upgrade.ts";
import listJobs from "https://deno.land/x/fluentci@v0.11.3/src/cmd/list.ts";
import generateWorkflow from "https://deno.land/x/fluentci@v0.11.3/src/cmd/github.ts";
import generateGitlabCIConfig from "https://deno.land/x/fluentci@v0.11.3/src/cmd/gitlab.ts";
import generateAWSCodePipelineConfig from "https://deno.land/x/fluentci@v0.11.3/src/cmd/aws.ts";
import generateAzurePipelinesConfig from "https://deno.land/x/fluentci@v0.11.3/src/cmd/azure.ts";
import generateCircleCIConfig from "https://deno.land/x/fluentci@v0.11.3/src/cmd/circleci.ts";
import docs from "https://deno.land/x/fluentci@v0.11.3/src/cmd/docs.ts";
import cache from "https://deno.land/x/fluentci@v0.11.3/src/cmd/cache.ts";
import doctor from "https://deno.land/x/fluentci@v0.11.3/src/cmd/doctor.ts";
import showEnvs from "https://deno.land/x/fluentci@v0.11.3/src/cmd/env.ts";
import login from "https://deno.land/x/fluentci@v0.11.3/src/cmd/login.ts";
import publish from "https://deno.land/x/fluentci@v0.11.3/src/cmd/publish.ts";
import startAgent, {
listAgents,
} from "https://deno.land/x/fluentci/src/cmd/agent.ts";
import whoami from "https://deno.land/x/fluentci/src/cmd/whoami.ts";
} from "https://deno.land/x/fluentci@v0.11.3/src/cmd/agent.ts";
import whoami from "https://deno.land/x/fluentci@v0.11.3/src/cmd/whoami.ts";
import { Client } from "https://esm.sh/@dagger.io/dagger@0.9.6";
import { GraphQLClient } from "https://esm.sh/graphql-request@6.1.0";

Expand Down

0 comments on commit 5930b48

Please sign in to comment.