Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,032 changes: 1,032 additions & 0 deletions crates/node/src/tests.rs

Large diffs are not rendered by default.

2,315 changes: 2,293 additions & 22 deletions crates/node/src/types/config.rs

Large diffs are not rendered by default.

39 changes: 38 additions & 1 deletion crates/node/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,46 @@ pub(crate) use init::{
InitApiResponse, InitData, InitParams, VALID_CONFIG_FORMATS, VALID_STRATEGIES,
};

// TODO: will be implemented on story 7.1 (config types)
// Config types (Story 7.1 - Implemented)
pub(crate) mod config;

// Re-export config types for easier access
// Allow unused imports - these will be used by config commands (Stories 7.2-7.3)
#[allow(unused_imports)]
pub(crate) use config::{
// Configuration Structures
AuditConfigInfo,
AuditSectionsConfigInfo,
BackupConfigInfo,
ChangelogConfigInfo,
ChangesetConfigInfo,
ConfigData,
// API Responses
ConfigShowApiResponse,
// Response Data
ConfigShowData,
// Input Parameters
ConfigShowParams,
ConfigValidateApiResponse,
ConfigValidateData,
ConfigValidateParams,
ConfigValidationIssue,
DependencyConfigInfo,
ExecuteConfigInfo,
GitConfigInfo,
HealthScoreWeightsInfo,
RegistryConfigInfo,
ScopedRegistryEntry,
UpgradeConfigInfo,
// Constants
VALID_BUMP_TYPES,
VALID_CHANGELOG_FORMATS,
VALID_MONOREPO_MODES,
VALID_SEVERITY_LEVELS,
VALID_STRATEGIES as CONFIG_VALID_STRATEGIES,
VersionConfigInfo,
};

// Changeset types (Story 4.1 - Implemented)
pub(crate) mod changeset;

Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-darwin-arm64",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"arm64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-darwin-x64",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"x64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-linux-arm64-gnu",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"arm64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-linux-arm64-musl",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"arm64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-linux-x64-gnu",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"x64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-linux-x64-musl",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"x64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-win32-arm64-msvc",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"arm64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools-win32-x64-msvc",
"version": "2.0.18",
"version": "2.0.19",
"cpu": [
"x64"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websublime/workspace-tools",
"version": "2.0.18",
"version": "2.0.19",
"description": "Bindings for node from crate workspace-tools",
"main": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.cts",
Expand Down
Loading
Loading