summit-marker 3.0.2 → 3.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "summit-marker",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "Marker a zero-dependency Chalk alternative for Node.js with terminal colors, chaining, RGB, hex colors, gradients, and styled messages.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -1,3 +1,6 @@
1
+ import { progress } from "./progress.js";
2
+ import error from "./errors.js";
3
+ import * as extended from "./extended.js";
1
4
  import spinner from "./spinner.js";
2
5
  import table from "./table.js";
3
6
  import logger from "./logger.js";
@@ -15,6 +18,10 @@ const marker = {};
15
18
  marker.logger = logger;
16
19
  marker.table = table;
17
20
  marker.spinner = spinner;
21
+ marker.progress = progress;
22
+
23
+ marker.error = error;
24
+ Object.assign(marker, extended);
18
25
 
19
26
  const chainStyles = {
20
27
  ...colors,