@swell/cli 2.0.1-alpha.6 → 2.0.1-alpha.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/dist/commands/logs.d.ts +1 -0
- package/dist/commands/logs.js +5 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/logs.d.ts
CHANGED
package/dist/commands/logs.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Flags } from '@oclif/core';
|
|
2
|
+
import ora from 'ora';
|
|
2
3
|
import { LineOutput, LoggedItem, TableOutput } from '../lib/logs/index.js';
|
|
3
4
|
import { SwellCommand } from '../swell-command.js';
|
|
4
5
|
// the columns available to display in the table
|
|
@@ -162,6 +163,10 @@ export default class Logs extends SwellCommand {
|
|
|
162
163
|
static summary = 'Output or stream store logs to the terminal.';
|
|
163
164
|
output;
|
|
164
165
|
async run() {
|
|
166
|
+
const spinner = ora();
|
|
167
|
+
spinner.fail('This command is temporarily disabled. Check back soon.');
|
|
168
|
+
}
|
|
169
|
+
async __run() {
|
|
165
170
|
const { flags } = await this.parse(Logs);
|
|
166
171
|
// indentify the columns to display
|
|
167
172
|
const columns = flags.columns.split(',');
|
package/oclif.manifest.json
CHANGED