@orkestrel/console 0.0.5 → 0.0.6
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/src/browser/index.d.ts +17 -9
- package/dist/src/browser/index.js +52 -10
- package/dist/src/browser/index.js.map +1 -1
- package/dist/src/core/index.cjs +325 -326
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.d.cts +3 -48
- package/dist/src/core/index.d.ts +3 -48
- package/dist/src/core/index.js +326 -326
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.d.cts +2 -2
- package/dist/src/server/index.d.ts +2 -2
- package/package.json +6 -4
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { EmitterErrorHandler } from '@orkestrel/emitter';
|
|
2
2
|
import { EmitterHooks } from '@orkestrel/emitter';
|
|
3
3
|
import { EmitterInterface } from '@orkestrel/emitter';
|
|
4
|
-
import { LogLevel } from '
|
|
5
|
-
import { SinkInterface } from '
|
|
4
|
+
import { LogLevel } from '@orkestrel/console';
|
|
5
|
+
import { SinkInterface } from '@orkestrel/console';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* One intercepted process-stream write — the immutable, serializable record a
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { EmitterErrorHandler } from '@orkestrel/emitter';
|
|
2
2
|
import { EmitterHooks } from '@orkestrel/emitter';
|
|
3
3
|
import { EmitterInterface } from '@orkestrel/emitter';
|
|
4
|
-
import { LogLevel } from '
|
|
5
|
-
import { SinkInterface } from '
|
|
4
|
+
import { LogLevel } from '@orkestrel/console';
|
|
5
|
+
import { SinkInterface } from '@orkestrel/console';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* One intercepted process-stream write — the immutable, serializable record a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/console",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "A typed console/terminal output toolkit for the @orkestrel line — logging, spinners, progress, and capture. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ansi",
|
|
@@ -71,12 +71,13 @@
|
|
|
71
71
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
72
72
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
73
73
|
"lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
|
|
74
|
-
"test": "npm run test:src && npm run test:policy && npm run test:guides",
|
|
74
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
|
|
75
75
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:browser --project src:server",
|
|
76
76
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
77
77
|
"test:src:browser": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:browser",
|
|
78
78
|
"test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
|
|
79
79
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
80
|
+
"test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
|
|
80
81
|
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
81
82
|
"build": "npm run clean && npm run build:src",
|
|
82
83
|
"build:src": "npm run build:src:core && npm run build:src:browser && npm run build:src:server",
|
|
@@ -91,8 +92,9 @@
|
|
|
91
92
|
},
|
|
92
93
|
"devDependencies": {
|
|
93
94
|
"@microsoft/api-extractor": "^7.58.12",
|
|
94
|
-
"@orkestrel/guide": "^0.0.
|
|
95
|
-
"@orkestrel/scaffold": "^0.0.
|
|
95
|
+
"@orkestrel/guide": "^0.0.11",
|
|
96
|
+
"@orkestrel/scaffold": "^0.0.30",
|
|
97
|
+
"@orkestrel/test": "^0.0.1",
|
|
96
98
|
"@types/node": "^26.1.2",
|
|
97
99
|
"@vitest/browser-playwright": "^4.1.10",
|
|
98
100
|
"oxfmt": "^0.61.0",
|