@oclif/core 3.0.0-beta.5 → 3.0.0-beta.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.
@@ -1,14 +1,14 @@
1
- export { AlphabetLowercase, AlphabetUppercase } from './alphabet';
2
- export { Config, ArchTypes, PlatformTypes, LoadOptions, VersionDetails, PluginVersionDetail } from './config';
3
- export { OclifError, PrettyPrintableError, CommandError } from './errors';
4
- export { HelpOptions } from './help';
5
- export { Hook, Hooks } from './hooks';
6
- export { Manifest } from './manifest';
7
- export { S3Manifest } from './s3-manifest';
8
- export { BooleanFlag, Flag, OptionFlag, Deprecation } from './parser';
9
- export { PJSON } from './pjson';
10
- export { Plugin, PluginOptions, Options } from './plugin';
11
- export { Topic } from './topic';
12
- export { TSConfig } from './ts-config';
13
- export { InferredFlags } from './flags';
14
- export { InferredArgs } from './args';
1
+ export type { AlphabetLowercase, AlphabetUppercase } from './alphabet';
2
+ export type { Config, ArchTypes, PlatformTypes, LoadOptions, VersionDetails, PluginVersionDetail } from './config';
3
+ export type { OclifError, PrettyPrintableError, CommandError } from './errors';
4
+ export type { HelpOptions } from './help';
5
+ export type { Hook, Hooks } from './hooks';
6
+ export type { Manifest } from './manifest';
7
+ export type { S3Manifest } from './s3-manifest';
8
+ export type { Arg, BooleanFlag, CustomOptions, Deprecation, Flag, FlagDefinition, OptionFlag, } from './parser';
9
+ export type { PJSON } from './pjson';
10
+ export type { Plugin, PluginOptions, Options } from './plugin';
11
+ export type { Topic } from './topic';
12
+ export type { TSConfig } from './ts-config';
13
+ export type { InferredFlags } from './flags';
14
+ export type { InferredArgs } from './args';
package/lib/ux/index.d.ts CHANGED
@@ -4,6 +4,7 @@ import { ExitError } from './exit';
4
4
  import { IPromptOptions } from './prompt';
5
5
  import * as styled from './styled';
6
6
  import { Table } from './styled';
7
+ export * from './styled/table';
7
8
  import * as uxPrompt from './prompt';
8
9
  import uxWait from './wait';
9
10
  export default class ux {
package/lib/ux/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Table = exports.ExitError = exports.Config = exports.config = exports.ActionBase = void 0;
4
+ const tslib_1 = require("tslib");
4
5
  const Errors = require("../errors");
5
6
  const util = require("util");
6
7
  const chalk = require("chalk");
@@ -14,6 +15,7 @@ Object.defineProperty(exports, "ExitError", { enumerable: true, get: function ()
14
15
  const styled = require("./styled");
15
16
  const styled_1 = require("./styled");
16
17
  Object.defineProperty(exports, "Table", { enumerable: true, get: function () { return styled_1.Table; } });
18
+ tslib_1.__exportStar(require("./styled/table"), exports);
17
19
  const uxPrompt = require("./prompt");
18
20
  const wait_1 = require("./wait");
19
21
  const stream_1 = require("./stream");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/core",
3
3
  "description": "base library for oclif CLIs",
4
- "version": "3.0.0-beta.5",
4
+ "version": "3.0.0-beta.7",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {