project-compass 1.0.2 → 1.0.3
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/package.json +1 -1
- package/project-compass-1.0.3.tgz +0 -0
- package/src/cli.js +6 -2
- package/project-compass-1.0.2.tgz +0 -0
package/package.json
CHANGED
|
Binary file
|
package/src/cli.js
CHANGED
|
@@ -1311,10 +1311,12 @@ function Compass({rootPath}) {
|
|
|
1311
1311
|
Box,
|
|
1312
1312
|
{
|
|
1313
1313
|
flex: 1,
|
|
1314
|
+
flexBasis: 0,
|
|
1314
1315
|
marginRight: 1,
|
|
1315
1316
|
borderStyle: 'round',
|
|
1316
1317
|
borderColor: 'magenta',
|
|
1317
|
-
padding: 1
|
|
1318
|
+
padding: 1,
|
|
1319
|
+
minWidth: 0
|
|
1318
1320
|
},
|
|
1319
1321
|
create(Text, {bold: true, color: 'magenta'}, 'Projects'),
|
|
1320
1322
|
create(Box, {flexDirection: 'column', marginTop: 1}, ...projectRows)
|
|
@@ -1323,9 +1325,11 @@ function Compass({rootPath}) {
|
|
|
1323
1325
|
Box,
|
|
1324
1326
|
{
|
|
1325
1327
|
flex: 1,
|
|
1328
|
+
flexBasis: 0,
|
|
1326
1329
|
borderStyle: 'round',
|
|
1327
1330
|
borderColor: 'cyan',
|
|
1328
|
-
padding: 1
|
|
1331
|
+
padding: 1,
|
|
1332
|
+
minWidth: 0
|
|
1329
1333
|
},
|
|
1330
1334
|
create(Text, {bold: true, color: 'cyan'}, 'Details'),
|
|
1331
1335
|
...detailContent
|
|
Binary file
|