test / unit + widget + golden + a11y (push) Failing after 37s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped
Pane is now a pure data class — id, kind, pid, argv, cwd, title, isClosed. The daemon-side PaneRegistry holds a parallel map of PtySession keyed on id; registry methods look up both sides when writing / resizing / closing. The `clide.dart` barrel no longer re-exports `src/pty/*`, `src/panes/registry.dart`, or the `*_commands.dart` modules — all three transitively import `dart:ffi` which isn't available when compiling to WebAssembly. The daemon entrypoint (bin/clide.dart) + core tests import them via deep paths now. Pane / PaneKind / DaemonEventSink / RecordingEventSink stay in the barrel since they're pure data the Flutter app references over IPC. Verified: `dart analyze` clean, 53 core tests green, 174 app tests green, `make ui-smoke` compiles + serves + Playwright smoke passes, daemon boots + ping round-trips + SIGTERMs cleanly. Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
1.6 KiB
Dart
48 lines
1.6 KiB
Dart
/// clide — Dart core library.
|
|
///
|
|
/// Shared by `bin/clide.dart` (CLI + daemon) and by the Flutter app
|
|
/// under `app/` (which depends on this package via `path: ../`).
|
|
///
|
|
/// See:
|
|
/// * `decisions/architecture.md` `D-005` — layout + language rationale.
|
|
/// * `decisions/architecture.md` `D-006` — CLI + event contract.
|
|
library;
|
|
|
|
// Flutter-app-visible surface. Deliberately **does not** export the
|
|
// `pty/` or `panes/registry.dart` modules — those import `dart:ffi`
|
|
// and pull in the PTY machinery that only runs on desktop. The
|
|
// daemon entrypoint (`bin/clide.dart`) imports them via deep paths.
|
|
//
|
|
// `Pane` + `PaneKind` + the event-sink interfaces travel here because
|
|
// they're pure data types that both the app and the daemon reference.
|
|
|
|
export 'src/daemon/dispatcher.dart';
|
|
export 'src/files/ignore.dart';
|
|
export 'src/files/listing.dart' show FileEntry, listDir;
|
|
export 'src/ipc/envelope.dart';
|
|
export 'src/ipc/paths.dart';
|
|
export 'src/ipc/schema_v1.dart';
|
|
export 'src/ipc/server.dart';
|
|
export 'src/panes/event_sink.dart';
|
|
export 'src/panes/pane.dart' show Pane, PaneKind;
|
|
|
|
/// Build-time-stamped version string.
|
|
///
|
|
/// The Makefile's `build` target passes `--define=clideVersion=…` when
|
|
/// invoking `dart compile exe`, stamping `project.yaml`'s `version:`
|
|
/// plus the git short SHA and dirty marker.
|
|
const clideVersion = String.fromEnvironment(
|
|
'clideVersion',
|
|
defaultValue: '2.0.0-dev',
|
|
);
|
|
|
|
const clideCommit = String.fromEnvironment(
|
|
'clideCommit',
|
|
defaultValue: 'unknown',
|
|
);
|
|
|
|
const clideDate = String.fromEnvironment(
|
|
'clideDate',
|
|
defaultValue: 'unknown',
|
|
);
|