Skip to content

fix: dead links to source files of commands #2785

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ DESCRIPTION
Build this SubQuery project code
```

_See code: [lib/commands/build/index.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/build/index.js)_
_See code: [lib/commands/build/index.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/build/index.ts)_

## `subql codegen`

Expand All @@ -89,7 +89,7 @@ DESCRIPTION
Generate schemas for graph node
```

_See code: [lib/commands/codegen/index.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/codegen/index.js)_
_See code: [lib/commands/codegen/index.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/codegen/index.ts)_

## `subql codegen:generate`

Expand All @@ -112,7 +112,7 @@ DESCRIPTION
Generate Project.yaml and mapping functions based on provided ABI
```

_See code: [lib/commands/codegen/generate.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/codegen/generate.js)_
_See code: [lib/commands/codegen/generate.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/codegen/generate.ts)_

## `subql deployment`

Expand Down Expand Up @@ -161,7 +161,7 @@ DESCRIPTION
Deploy to hosted service
```

_See code: [lib/commands/deployment/index.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/deployment/index.js)_
_See code: [lib/commands/deployment/index.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/deployment/index.ts)_

## `subql deployment:delete`

Expand All @@ -180,7 +180,7 @@ DESCRIPTION
Delete Deployment
```

_See code: [lib/commands/deployment/delete.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/deployment/delete.js)_
_See code: [lib/commands/deployment/delete.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/deployment/delete.ts)_

## `subql deployment:deploy`

Expand Down Expand Up @@ -225,7 +225,7 @@ DESCRIPTION
Deployment to hosted service
```

_See code: [lib/commands/deployment/deploy.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/deployment/deploy.js)_
_See code: [lib/commands/deployment/deploy.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/deployment/deploy.ts)_

## `subql deployment:promote`

Expand All @@ -244,7 +244,7 @@ DESCRIPTION
Promote Deployment
```

_See code: [lib/commands/deployment/promote.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/deployment/promote.js)_
_See code: [lib/commands/deployment/promote.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/deployment/promote.ts)_

## `subql init [PROJECTNAME]`

Expand All @@ -268,7 +268,7 @@ DESCRIPTION
Initialize a scaffold subquery project
```

_See code: [lib/commands/init.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/init.js)_
_See code: [lib/commands/init.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/init.ts)_

## `subql migrate`

Expand All @@ -287,7 +287,7 @@ DESCRIPTION
Schema subgraph project to subquery project
```

_See code: [lib/commands/migrate.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/migrate.js)_
_See code: [lib/commands/migrate.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/migrate.ts)_

## `subql multi-chain:add`

Expand All @@ -306,7 +306,7 @@ DESCRIPTION
Add new chain manifest to multi-chain configuration
```

_See code: [lib/commands/multi-chain/add.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/multi-chain/add.js)_
_See code: [lib/commands/multi-chain/add.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/multi-chain/add.ts)_

## `subql multi-chain:deploy`

Expand Down Expand Up @@ -352,7 +352,7 @@ DESCRIPTION
Multi-chain deployment to hosted service
```

_See code: [lib/commands/multi-chain/deploy.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/multi-chain/deploy.js)_
_See code: [lib/commands/multi-chain/deploy.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/multi-chain/deploy.ts)_

## `subql project`

Expand All @@ -377,7 +377,7 @@ DESCRIPTION
Create/Delete project
```

_See code: [lib/commands/project/index.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/project/index.js)_
_See code: [lib/commands/project/index.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/project/index.ts)_

## `subql project:create-project`

Expand All @@ -401,7 +401,7 @@ DESCRIPTION
Create Project on Hosted Service
```

_See code: [lib/commands/project/create-project.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/project/create-project.js)_
_See code: [lib/commands/project/create-project.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/project/create-project.ts)_

## `subql project:delete-project`

Expand All @@ -419,7 +419,7 @@ DESCRIPTION
Delete Project on Hosted Service
```

_See code: [lib/commands/project/delete-project.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/project/delete-project.js)_
_See code: [lib/commands/project/delete-project.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/project/delete-project.ts)_

## `subql publish`

Expand All @@ -438,6 +438,6 @@ DESCRIPTION
Upload this SubQuery project to IPFS
```

_See code: [lib/commands/publish.js](https://github.com/packages/cli/blob/v5.9.1-0/lib/commands/publish.js)_
_See code: [lib/commands/publish.js](https://github.com/subquery/subql/blob/main/packages/cli/src/commands/publish.ts)_

<!-- commandsstop -->