sublime_standard_tools 0.0.15

A collection of utilities for working with Node.js projects from Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Package Manager Implementation
//!
//! ## What
//! This module previously contained package manager implementations.
//! These have been moved to the node module as package managers are
//! generic Node.js concepts, not monorepo-specific.
//!
//! ## How
//! All package manager functionality is now available through:
//! - `crate::node::PackageManager`
//! - `crate::node::PackageManagerKind`
//!
//! ## Why
//! This architectural change ensures proper separation of concerns where
//! generic Node.js concepts are in the node module and monorepo-specific
//! functionality remains in this module.

// This file is intentionally empty as all implementations have been moved to node module