workspace_node_tools/lib.rs
1#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/2073802?s=200&v=4")]
2//! # Workspace node tools
3//!
4//! This crate provides a set of tools to work with node workspaces.
5//! It allows you to retrieve information about the workspace, and to interact with the workspace.
6#[allow(unused_imports)]
7#[macro_use]
8#[cfg(feature = "napi-derive")]
9extern crate napi_derive;
10
11mod utils;
12
13pub mod manager;
14
15pub mod paths;
16
17pub mod git;
18
19pub mod packages;
20
21pub mod conventional;
22
23pub mod bumps;
24
25pub mod changes;
26
27pub mod dependency;