@symbo.ls/cli 2.11.279 → 2.11.282
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 +1 -4
- package/bin/linking/packages.js +9 -9
- package/package.json +2 -2
package/bin/convert.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict'
|
|
2
2
|
|
|
3
|
-
import chalk from 'chalk'
|
|
3
|
+
// import chalk from 'chalk'
|
|
4
4
|
import { program } from './program.js'
|
|
5
5
|
import convert, { convertDomqlModule } from '@symbo.ls/convert'
|
|
6
6
|
|
|
@@ -8,11 +8,8 @@ const TMP_DIR_NAME = '.smbls_convert_tmp'
|
|
|
8
8
|
|
|
9
9
|
export function convertFromCli (data, opts) {
|
|
10
10
|
const { framework, verbose, verboseCode } = opts
|
|
11
|
-
console.log(chalk.dim('\n----------------\n'))
|
|
12
|
-
console.log('Converting components to', chalk.bold(framework))
|
|
13
11
|
const convertedStrings = convertDomqlModule(data, null, framework)
|
|
14
12
|
if (verboseCode) console.log(convertedStrings)
|
|
15
|
-
console.log(chalk.bold.green('\nSuccessfully converted'))
|
|
16
13
|
return verbose
|
|
17
14
|
}
|
|
18
15
|
|
package/bin/linking/packages.js
CHANGED
|
@@ -4,9 +4,9 @@ export default [
|
|
|
4
4
|
'@symbo.ls/convert',
|
|
5
5
|
'@symbo.ls/create',
|
|
6
6
|
'css-in-props',
|
|
7
|
+
'@symbo.ls/emotion',
|
|
7
8
|
'@symbo.ls/default-config',
|
|
8
9
|
'@symbo.ls/fetch',
|
|
9
|
-
'@symbo.ls/emotion',
|
|
10
10
|
'@symbo.ls/preview',
|
|
11
11
|
'@symbo.ls/init',
|
|
12
12
|
'smbls',
|
|
@@ -17,25 +17,25 @@ export default [
|
|
|
17
17
|
'@symbo.ls/utils',
|
|
18
18
|
'@symbo.ls/default-icons',
|
|
19
19
|
'@symbo.ls/feather-icons',
|
|
20
|
-
'@symbo.ls/material-icons',
|
|
21
20
|
'@symbo.ls/fluent-icons',
|
|
21
|
+
'@symbo.ls/material-icons',
|
|
22
22
|
'@symbo.ls/editorjs',
|
|
23
23
|
'@symbo.ls/google-maps',
|
|
24
|
-
'@symbo.ls/atoms',
|
|
25
24
|
'@symbo.ls/helmet',
|
|
26
25
|
'@symbo.ls/markdown',
|
|
26
|
+
'@symbo.ls/atoms',
|
|
27
27
|
'@symbo.ls/avatar',
|
|
28
28
|
'@symbo.ls/banner',
|
|
29
29
|
'@symbo.ls/box',
|
|
30
|
-
'@symbo.ls/button',
|
|
31
30
|
'@symbo.ls/card',
|
|
32
|
-
'@symbo.ls/dialog',
|
|
33
31
|
'@symbo.ls/datepicker',
|
|
32
|
+
'@symbo.ls/button',
|
|
33
|
+
'@symbo.ls/dialog',
|
|
34
34
|
'@symbo.ls/doublehr',
|
|
35
35
|
'@symbo.ls/dropdown',
|
|
36
36
|
'@symbo.ls/field',
|
|
37
|
-
'@symbo.ls/form',
|
|
38
37
|
'@symbo.ls/hgroup',
|
|
38
|
+
'@symbo.ls/form',
|
|
39
39
|
'@symbo.ls/icon',
|
|
40
40
|
'@symbo.ls/indicator',
|
|
41
41
|
'@symbo.ls/label',
|
|
@@ -45,18 +45,18 @@ export default [
|
|
|
45
45
|
'@symbo.ls/modal',
|
|
46
46
|
'@symbo.ls/notification',
|
|
47
47
|
'@symbo.ls/paragraphbutton',
|
|
48
|
-
'@symbo.ls/progress',
|
|
49
48
|
'@symbo.ls/pills',
|
|
49
|
+
'@symbo.ls/progress',
|
|
50
50
|
'@symbo.ls/range',
|
|
51
51
|
'@symbo.ls/select',
|
|
52
52
|
'@symbo.ls/sidebar',
|
|
53
53
|
'@symbo.ls/slider',
|
|
54
|
-
'@symbo.ls/steps',
|
|
55
54
|
'@symbo.ls/sociallink',
|
|
56
55
|
'@symbo.ls/tab',
|
|
56
|
+
'@symbo.ls/steps',
|
|
57
57
|
'@symbo.ls/table',
|
|
58
|
-
'@symbo.ls/threejs',
|
|
59
58
|
'@symbo.ls/timepicker',
|
|
59
|
+
'@symbo.ls/threejs',
|
|
60
60
|
'@symbo.ls/tooltip',
|
|
61
61
|
'@symbo.ls/unitvalue',
|
|
62
62
|
'@symbo.ls/upload',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.282",
|
|
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": "637c2a90980fee2cca5e2c768750fe25441e31d6"
|
|
31
31
|
}
|