Skip to content

Commit

Permalink
Merge pull request #3 from fluent-ci-templates/use-deps
Browse files Browse the repository at this point in the history
add `deps.ts` for managing dependencies
  • Loading branch information
tsirysndr authored Sep 22, 2023
2 parents f9058b0 + 75f276f commit 31f7284
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 91 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ fluentci
| check | Run type checking |
| format | Format source code |
| test | Run the tests |
| build | Build the project |
| build | Build the project

## Programmatic usage

You can also use this pipeline programmatically:

```ts
import Client, { connect } from "https://sdk.fluentci.io/v0.1.7/mod.ts";
import { check, format, test, build } from "https://pkg.fluentci.io/[email protected].1/mod.ts";
import Client, { connect } from "https://sdk.fluentci.io/v0.1.9/mod.ts";
import { check, format, test, build } from "https://pkg.fluentci.io/[email protected].2/mod.ts";

function pipeline(src = ".") {
connect(async (client: Client) => {
Expand Down
Loading

0 comments on commit 31f7284

Please sign in to comment.