Skip to content

Commit

Permalink
Remove test dir from oclif template, add short readme
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ar committed Dec 13, 2023
1 parent e42a477 commit 075a966
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 65 deletions.
2 changes: 0 additions & 2 deletions packages/cli/.eslintignore

This file was deleted.

4 changes: 4 additions & 0 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Codex CLI
This package is a stub for a codex CLI, demonstrating that interaction with
the protocol is possible without relying on any particular gateway. The only
thing necessary is contact with a ceramic node.
17 changes: 0 additions & 17 deletions packages/cli/test/commands/create.test.ts

This file was deleted.

10 changes: 0 additions & 10 deletions packages/cli/test/commands/hello/index.test.ts

This file was deleted.

10 changes: 0 additions & 10 deletions packages/cli/test/commands/hello/world.test.ts

This file was deleted.

17 changes: 0 additions & 17 deletions packages/cli/test/commands/update.test.ts

This file was deleted.

9 changes: 0 additions & 9 deletions packages/cli/test/tsconfig.json

This file was deleted.

7 changes: 7 additions & 0 deletions packages/cli/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "./tsconfig.json",
"exclude": [
"dist",
"test/**/*"
]
}
5 changes: 5 additions & 0 deletions packages/lib/src/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ import type {
import type { ExecutionResult } from "graphql";
import * as gql from "gql-query-builder";

export type PageInfo = {
endCursor: string;
hasNextPage: boolean;
};

export const queryResearchObjects = async (
composeClient: ComposeClient,
): Promise<ResearchObject[]> => {
Expand Down

0 comments on commit 075a966

Please sign in to comment.