Skip to content

Commit

Permalink
rename to Spektr
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Mar 15, 2024
1 parent b5a4973 commit 023426a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Clif
# Spektr

Elegant CLI framework. Works with Deno, Node.js and Bun.

Expand All @@ -14,8 +14,8 @@ Elegant CLI framework. Works with Deno, Node.js and Bun.
## Example

```ts
import { Clif } from 'https://deno.land/x/clif/clif.ts'
import { withColorPlugin } from 'https://deno.land/x/clif/plugins/color.ts'
import { Clif } from 'https://deno.land/x/spektr/spektr.ts'
import { withColorPlugin } from 'https://deno.land/x/spektr/plugins/color.ts'

const cli = new CLI({ name: 'clif', plugins: [withColorPlugin] })

Expand Down
6 changes: 3 additions & 3 deletions clif_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ import {
beforeEach,
describe,
it,
} from 'https://deno.land/std@0.212.0/testing/bdd.ts'
import { expect } from 'https://deno.land/std@0.212.0/expect/mod.ts'
} from 'https://deno.land/std@0.220.1/testing/bdd.ts'
import { expect } from 'https://deno.land/std@0.220.1/expect/mod.ts'
import {
assertSpyCall,
Spy,
spy,
} from 'https://deno.land/std@0.212.0/testing/mock.ts'
} from 'https://deno.land/std@0.220.1/testing/mock.ts'
import { CLI } from './clif.ts'
import { Positionals } from './types.ts'
import { ParsedOptions } from './types.ts'
Expand Down
4 changes: 2 additions & 2 deletions parse_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from 'https://deno.land/std@0.212.0/testing/bdd.ts'
import { expect } from 'https://deno.land/std@0.212.0/expect/mod.ts'
import { describe, it } from 'https://deno.land/std@0.220.1/testing/bdd.ts'
import { expect } from 'https://deno.land/std@0.220.1/expect/mod.ts'
import { handleArgParsing } from './parse.ts'

describe('handleArgParsing', () => {
Expand Down
4 changes: 2 additions & 2 deletions utils_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from 'https://deno.land/std@0.212.0/testing/bdd.ts'
import { expect } from 'https://deno.land/std@0.212.0/expect/mod.ts'
import { describe, it } from 'https://deno.land/std@0.220.1/testing/bdd.ts'
import { expect } from 'https://deno.land/std@0.220.1/expect/mod.ts'
import {
findDeepestParent,
findExactCommand,
Expand Down

0 comments on commit 023426a

Please sign in to comment.