@symbo.ls/cli 2.11.278 → 2.11.280

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
@@ -18,7 +18,7 @@ export function convertFromCli (data, opts) {
18
18
 
19
19
  program
20
20
  .command('convert')
21
- .description('Convert and copy all DomQL components under a directory')
21
+ .description('Convert and copy all DOMQL components under a directory')
22
22
  .argument('[src]', 'Source directory/file. By default, it is "src/"')
23
23
  .argument('[dest]',
24
24
  'Destination directory/file. Will be overwritten. By ' +
package/bin/fetch.js CHANGED
@@ -110,7 +110,7 @@ export const fetchFromCli = async (opts) => {
110
110
 
111
111
  program
112
112
  .command('fetch')
113
- .description('Fetch symbols')
113
+ .description('Fetch Symbols')
114
114
  .option('-d, --dev', 'Running from local server')
115
115
  .option('-v, --verbose', 'Verbose errors and warnings')
116
116
  .option('--convert', 'Verbose errors and warnings', true)
package/bin/init.js CHANGED
@@ -5,7 +5,7 @@ import { initRepo } from './init-helpers/init-repo.js'
5
5
 
6
6
  program
7
7
  .command('init')
8
- .description('Initialize a project')
8
+ .description('Initialize within the project')
9
9
  .argument('[dest]', 'Project directory. By default, it is "."')
10
10
  .option('--domql', 'Use Domql in the project', true)
11
11
  .option('--react', 'Use React in the project (default)')
@@ -37,7 +37,7 @@ const capture = (opts) => {
37
37
 
38
38
  program
39
39
  .command('link-packages')
40
- .description('Run "yarn link" on specified packages')
40
+ .description('Links all smbls packages into the project')
41
41
  .option('-c, --capture', 'Capture and write all package names.')
42
42
  .option('-j, --join', 'Join all links into one command.', true)
43
43
  .action((opts) => {
@@ -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',
@@ -12,7 +12,7 @@ try {
12
12
 
13
13
  program
14
14
  .command('socket-server')
15
- .description('Sync with Symbols')
15
+ .description('Realtime sync with Symbols')
16
16
  .option('-l, --live', 'Bypass the local build')
17
17
  .action(async (options) => {
18
18
  rc.then(data => {
package/bin/sync.js CHANGED
@@ -22,7 +22,7 @@ try {
22
22
 
23
23
  program
24
24
  .command('sync')
25
- .description('Sync with Symbols')
25
+ .description('Realtime sync with Symbols')
26
26
  .option('-d, --dev', 'Running from local server')
27
27
  .option('-v, --verbose', 'Verbose errors and warnings')
28
28
  .option('-k, --key', 'Bypass the symbols.json key, overriding the key manually')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/cli",
3
- "version": "2.11.278",
3
+ "version": "2.11.280",
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": "2ba23e26dde48395d83d28a5b7ab35bc6b4519d7"
30
+ "gitHead": "cd0d244fc2a2e42480b169d7fbc3a0674a6c6965"
31
31
  }