@symbo.ls/cli 0.6.29 → 0.6.31

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/fetch.js CHANGED
@@ -88,7 +88,7 @@ program
88
88
  for (const t in config) {
89
89
  const type = config[t]
90
90
  console.log(chalk.bold(t))
91
- // for (const v in type) console.log(' ', chalk.dim(v))
91
+ for (const v in type) console.log(' ', chalk.dim(v))
92
92
  console.log(Object.keys(type))
93
93
  }
94
94
  })
package/bin/sync.js CHANGED
@@ -8,7 +8,7 @@ const RC_PATH = process.cwd() + '/.symbolsrc.json'
8
8
  let rc = {}
9
9
  try {
10
10
  rc = loadModule(RC_PATH) // eslint-disable-line
11
- } catch (e) {}
11
+ } catch (e) { console.error('Please include .symbolsrc.json to your root of respository') }
12
12
 
13
13
  program
14
14
  .command('sync')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symbo.ls/cli",
3
- "version": "0.6.29",
3
+ "version": "0.6.31",
4
4
  "description": "Fetch your Symbols configuration",
5
5
  "main": "bin/fetch.js",
6
6
  "author": "Symbols",