@symbo.ls/cli 2.11.191 → 2.11.192

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/bin/convert.js CHANGED
@@ -1,7 +1,8 @@
1
1
  'use strict'
2
2
 
3
3
  import { program } from './program.js'
4
- import { CLIconvert } from '@symbo.ls/convert/index.js'
4
+ import * as smblsconvert from '@symbo.ls/convert'
5
+ const { convert } = smblsconvert.default
5
6
 
6
7
  const TMP_DIR_NAME = '.smbls_convert_tmp'
7
8
 
@@ -27,4 +28,4 @@ program
27
28
  .option('--internal-uikit',
28
29
  '(For internal use only). ' +
29
30
  'Excludes particular components from the conversion')
30
- .action(CLIconvert)
31
+ .action(convert)
package/bin/fetch.js CHANGED
@@ -5,11 +5,11 @@ import chalk from 'chalk'
5
5
  import { loadModule } from './require.js'
6
6
  import { program } from './program.js'
7
7
  import * as fetch from '@symbo.ls/fetch'
8
-
9
8
  import * as utils from '@domql/utils'
10
- import { convertFromCli } from './convert.js'
11
- const { isObjectLike } = utils.default
9
+ import * as smblsconvert from '@symbo.ls/convert'
12
10
 
11
+ const { convertFromCli } = smblsconvert.default
12
+ const { isObjectLike } = utils.default
13
13
  const { fetchRemote } = fetch.default
14
14
 
15
15
  const RC_PATH = process.cwd() + '/symbols.json'
package/bin/sync.js CHANGED
@@ -7,7 +7,9 @@ import { updateDynamycFile } from '@symbo.ls/socket'
7
7
 
8
8
  import * as socketClient from '@symbo.ls/socket/client.js'
9
9
  import { fetchFromCli } from './fetch.js'
10
- import { convertFromCli } from './convert.js'
10
+ import * as smblsconvert from '@symbo.ls/convert'
11
+
12
+ const { convertFromCli } = smblsconvert.default
11
13
 
12
14
  const SOCKET_API_URL_LOCAL = 'http://localhost:13336/'
13
15
  const SOCKET_API_URL = 'https://socket.symbols.app/'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/cli",
3
- "version": "2.11.191",
3
+ "version": "2.11.192",
4
4
  "description": "Fetch your Symbols configuration",
5
5
  "main": "bin/fetch.js",
6
6
  "author": "Symbols",
@@ -27,5 +27,5 @@
27
27
  "peerDependencies": {
28
28
  "@symbo.ls/convert": "latest"
29
29
  },
30
- "gitHead": "a78598a97a6531fa3689833f1525ba0a49a3f81f"
30
+ "gitHead": "089c227a93e3542d67ad5deff8010b07831dcf64"
31
31
  }