@open-pencil/cli 0.9.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts CHANGED
@@ -2,13 +2,16 @@
2
2
  import { defineCommand, runMain } from 'citty'
3
3
 
4
4
  import analyze from './commands/analyze'
5
+ import convert from './commands/convert'
5
6
  import evalCmd from './commands/eval'
6
7
  import exportCmd from './commands/export'
7
8
  import find from './commands/find'
9
+ import formats from './commands/formats'
8
10
  import info from './commands/info'
9
- import query from './commands/query'
11
+ import lint from './commands/lint'
10
12
  import node from './commands/node'
11
13
  import pages from './commands/pages'
14
+ import query from './commands/query'
12
15
  import tree from './commands/tree'
13
16
  import variables from './commands/variables'
14
17
 
@@ -17,15 +20,18 @@ const { version } = await import('../package.json')
17
20
  const main = defineCommand({
18
21
  meta: {
19
22
  name: 'open-pencil',
20
- description: 'OpenPencil CLI — inspect, export, and lint .fig design files',
23
+ description: 'OpenPencil CLI — inspect, export, and lint OpenPencil design documents',
21
24
  version
22
25
  },
23
26
  subCommands: {
24
27
  analyze,
28
+ convert,
25
29
  eval: evalCmd,
26
30
  export: exportCmd,
27
31
  find,
32
+ formats,
28
33
  info,
34
+ lint,
29
35
  query,
30
36
  node,
31
37
  pages,