@riboseinc/anafero-cli 0.0.6 → 0.0.7
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/CLI.tsx +2 -2
- package/README.rst +0 -6
- package/bootstrap.js +281 -375
- package/bootstrap.js.map +4 -4
- package/build-site.mjs +2476 -2922
- package/dependencies.mts +1 -1
- package/generate-to-filesystem.tsx +61 -55
- package/package.json +1 -1
- package/riboseinc-anafero-cli-0.0.7.tgz +0 -0
package/CLI.tsx
CHANGED
|
@@ -138,9 +138,9 @@ function ({ task, progress, error, subtasks }) {
|
|
|
138
138
|
<Box height={hasProgressEstimate ? 2 : 1} flexDirection="column">
|
|
139
139
|
{progress
|
|
140
140
|
? <>
|
|
141
|
-
<Box height={
|
|
141
|
+
<Box height={2} gap={2} flexGrow={0}>
|
|
142
142
|
<Spinner label={task} />
|
|
143
|
-
<Box flexGrow={0}>
|
|
143
|
+
<Box flexGrow={0} height={2}>
|
|
144
144
|
<Text>{progress.state ?? 'working…'}</Text>
|
|
145
145
|
</Box>
|
|
146
146
|
</Box>
|
package/README.rst
CHANGED
|
@@ -14,12 +14,6 @@ Development
|
|
|
14
14
|
|
|
15
15
|
To clean & build the package, run ``yarn cbp``.
|
|
16
16
|
|
|
17
|
-
Release
|
|
18
|
-
-------
|
|
19
|
-
|
|
20
|
-
Increment version in package.json & NPM publish from within this directory
|
|
21
|
-
(after running CBP script and extensive testing).
|
|
22
|
-
|
|
23
17
|
Notes on dependencies
|
|
24
18
|
---------------------
|
|
25
19
|
|