breadc 1.0.0-beta.4 → 1.0.0-beta.5

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/index.d.mts CHANGED
@@ -1,2 +1,5 @@
1
1
  import { ActionMiddleware, Argument, ArgumentInit, Breadc, BreadcAppError, BreadcError, BreadcInit, Command, CommandInit, Group, GroupInit, Option, OptionInit, ResolveCommandError, ResolveGroupError, ResolveOptionError, UnknownCommandMiddleware, UnknownOptionMiddleware, argument, breadc, command, group, option } from "@breadc/core";
2
- export { type ActionMiddleware, type Argument, type ArgumentInit, type Breadc, BreadcAppError, BreadcError, type BreadcInit, type Command, type CommandInit, type Group, type GroupInit, type Option, type OptionInit, ResolveCommandError, ResolveGroupError, ResolveOptionError, type UnknownCommandMiddleware, type UnknownOptionMiddleware, argument, breadc, command, group, option };
2
+ import { ansi256, ansi256Bg, bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgLightBlue, bgLightCyan, bgLightGray, bgLightGreen, bgLightMagenta, bgLightRed, bgLightYellow, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, cyan, dim, gray, green, hidden, inverse, italic, lightBlue, lightCyan, lightGray, lightGreen, lightMagenta, lightRed, lightYellow, link, magenta, red, reset, strikethrough, underline, white, yellow } from "@breadc/color";
3
+ export * from "@breadc/death";
4
+ export * from "@breadc/tui";
5
+ export { type ActionMiddleware, type Argument, type ArgumentInit, type Breadc, BreadcAppError, BreadcError, type BreadcInit, type Command, type CommandInit, type Group, type GroupInit, type Option, type OptionInit, ResolveCommandError, ResolveGroupError, ResolveOptionError, type UnknownCommandMiddleware, type UnknownOptionMiddleware, ansi256, ansi256Bg, argument, bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgLightBlue, bgLightCyan, bgLightGray, bgLightGreen, bgLightMagenta, bgLightRed, bgLightYellow, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, breadc, command, cyan, dim, gray, green, group, hidden, inverse, italic, lightBlue, lightCyan, lightGray, lightGreen, lightMagenta, lightRed, lightYellow, link, magenta, option, red, reset, strikethrough, underline, white, yellow };
package/dist/index.mjs CHANGED
@@ -1,3 +1,8 @@
1
1
  import { BreadcAppError, BreadcError, ResolveCommandError, ResolveGroupError, ResolveOptionError, argument, breadc, command, group, option } from "@breadc/core";
2
+ import { ansi256, ansi256Bg, bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgLightBlue, bgLightCyan, bgLightGray, bgLightGreen, bgLightMagenta, bgLightRed, bgLightYellow, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, cyan, dim, gray, green, hidden, inverse, italic, lightBlue, lightCyan, lightGray, lightGreen, lightMagenta, lightRed, lightYellow, link, magenta, red, reset, strikethrough, underline, white, yellow } from "@breadc/color";
2
3
 
3
- export { BreadcAppError, BreadcError, ResolveCommandError, ResolveGroupError, ResolveOptionError, argument, breadc, command, group, option };
4
+ export * from "@breadc/death"
5
+
6
+ export * from "@breadc/tui"
7
+
8
+ export { BreadcAppError, BreadcError, ResolveCommandError, ResolveGroupError, ResolveOptionError, ansi256, ansi256Bg, argument, bgBlack, bgBlue, bgCyan, bgGray, bgGreen, bgLightBlue, bgLightCyan, bgLightGray, bgLightGreen, bgLightMagenta, bgLightRed, bgLightYellow, bgMagenta, bgRed, bgWhite, bgYellow, black, blue, bold, breadc, command, cyan, dim, gray, green, group, hidden, inverse, italic, lightBlue, lightCyan, lightGray, lightGreen, lightMagenta, lightRed, lightYellow, link, magenta, option, red, reset, strikethrough, underline, white, yellow };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "breadc",
3
- "version": "1.0.0-beta.4",
3
+ "version": "1.0.0-beta.5",
4
4
  "description": "Yet another Command Line Application Framework with fully strong TypeScript support",
5
5
  "keywords": [
6
6
  "breadc",
@@ -33,10 +33,10 @@
33
33
  "dist"
34
34
  ],
35
35
  "dependencies": {
36
- "@breadc/color": "1.0.0-beta.4",
37
- "@breadc/core": "1.0.0-beta.4",
38
- "@breadc/tui": "1.0.0-beta.4",
39
- "@breadc/death": "1.0.0-beta.4"
36
+ "@breadc/death": "1.0.0-beta.5",
37
+ "@breadc/core": "1.0.0-beta.5",
38
+ "@breadc/color": "1.0.0-beta.5",
39
+ "@breadc/tui": "1.0.0-beta.5"
40
40
  },
41
41
  "scripts": {
42
42
  "build": "tsdown",