@travetto/terminal 6.0.0-rc.1 → 6.0.0-rc.2

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/__index__.ts CHANGED
@@ -1,5 +1,5 @@
1
- import type { } from './src/trv';
2
- export * from './src/style';
3
- export * from './src/terminal';
4
- export * from './src/writer';
5
- export * from './src/util';
1
+ import type { } from './src/trv.d.ts';
2
+ export * from './src/style.ts';
3
+ export * from './src/terminal.ts';
4
+ export * from './src/writer.ts';
5
+ export * from './src/util.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/terminal",
3
- "version": "6.0.0-rc.1",
3
+ "version": "6.0.0-rc.2",
4
4
  "description": "General terminal support",
5
5
  "keywords": [
6
6
  "terminal",
@@ -24,7 +24,7 @@
24
24
  "directory": "module/terminal"
25
25
  },
26
26
  "dependencies": {
27
- "@travetto/runtime": "^6.0.0-rc.1",
27
+ "@travetto/runtime": "^6.0.0-rc.2",
28
28
  "chalk": "^5.4.1"
29
29
  },
30
30
  "travetto": {
package/src/terminal.ts CHANGED
@@ -2,7 +2,7 @@ import tty from 'node:tty';
2
2
 
3
3
  import { Env, Util } from '@travetto/runtime';
4
4
 
5
- import { TerminalWriter } from './writer';
5
+ import { TerminalWriter } from './writer.ts';
6
6
 
7
7
  type TerminalStreamingConfig = { minDelay?: number, outputStreamToMain?: boolean };
8
8
  type Coord = { x: number, y: number };
package/src/trv.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { ColorLevel } from './style';
1
+ import type { ColorLevel } from './style.ts';
2
2
 
3
3
  declare module '@travetto/runtime' {
4
4
  interface EnvData {
package/src/util.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { StyleUtil, TermStyleFn, TermStyleInput } from './style';
2
- import { Terminal, WAIT_TOKEN } from './terminal';
1
+ import { StyleUtil, TermStyleFn, TermStyleInput } from './style.ts';
2
+ import { Terminal, WAIT_TOKEN } from './terminal.ts';
3
3
 
4
4
  type ProgressEvent<T> = { total?: number, idx: number, value: T };
5
5
  type ProgressStyle = { complete: TermStyleFn, incomplete?: TermStyleFn };