@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 +3 -2
- package/bin/fetch.js +3 -3
- package/bin/sync.js +3 -1
- package/package.json +2 -2
package/bin/convert.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
3
|
import { program } from './program.js'
|
|
4
|
-
import
|
|
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(
|
|
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
|
|
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
|
|
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.
|
|
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": "
|
|
30
|
+
"gitHead": "089c227a93e3542d67ad5deff8010b07831dcf64"
|
|
31
31
|
}
|