@overscore/cli 0.13.9 → 0.13.10

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -606,6 +606,9 @@ async function queryList() {
606
606
  const rowInfo = ds.row_count !== null ? ` (~${ds.row_count.toLocaleString()} rows)` : "";
607
607
  const sampleTag = ds.is_sample ? " [sample]" : "";
608
608
  console.log(` ${ds.name}${rowInfo}${sampleTag}`);
609
+ if (ds.description) {
610
+ console.log(` ${ds.description}`);
611
+ }
609
612
  if (ds.columns && ds.columns.length > 0) {
610
613
  const cols = ds.columns.map((c) => `${c.name} (${c.type})`).join(", ");
611
614
  console.log(` columns: ${cols}`);
@@ -638,6 +641,9 @@ async function queryShow(name) {
638
641
  }
639
642
  if (query.source === "dataset" && query.dataset_name) {
640
643
  console.log(` source: uploaded dataset (${query.dataset_name})`);
644
+ if (query.dataset_description) {
645
+ console.log(` ${query.dataset_description}`);
646
+ }
641
647
  }
642
648
  console.log();
643
649
  if (query.source === "dataset") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overscore/cli",
3
- "version": "0.13.9",
3
+ "version": "0.13.10",
4
4
  "description": "CLI for deploying Overscore dashboards and publishing analyses",
5
5
  "bin": {
6
6
  "overscore": "dist/index.js"