feat(notcore): add shared types, config, paths, error crate

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Joseph O'Brien
2026-03-31 17:17:35 -04:00
parent 84629d8be7
commit 6b0bd3beb6
15 changed files with 387 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
pub mod config;
pub mod error;
pub mod paths;
pub mod types;
pub use config::{Config, Defaults, Method, PackageConfig};
pub use error::NotfilesError;
pub use paths::{dotfiles_dir, expand_tilde};
pub use types::{HookPhase, HookSpec, PackageSpec, Report, Step, StepStatus};