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
733 changes: 733 additions & 0 deletions crates/node/src/tests.rs

Large diffs are not rendered by default.

2,121 changes: 2,079 additions & 42 deletions crates/node/src/types/bump.rs

Large diffs are not rendered by default.

29 changes: 28 additions & 1 deletion crates/node/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,36 @@ pub(crate) use changeset::{
VALID_SORT_OPTIONS,
};

// TODO: will be implemented on story 5.1 (bump types)
// Bump types (Story 5.1 - Implemented)
pub(crate) mod bump;

// Re-export bump types for easier access
// Allow unused imports - these will be used by bump commands (Stories 5.2-5.4)
#[allow(unused_imports)]
pub(crate) use bump::{
BumpApplyApiResponse,
BumpApplyData,
BumpApplyParams,
// API Responses
BumpPreviewApiResponse,
// Response Data
BumpPreviewData,
// Input Parameters
BumpPreviewParams,
BumpSnapshotApiResponse,
BumpSnapshotData,
BumpSnapshotParams,
BumpSummaryInfo,
// Constants
COMMON_PRERELEASE_TAGS,
DEFAULT_SNAPSHOT_FORMAT,
DependencyUpdateInfo,
// Supporting Types
PackageVersionInfo,
SnapshotVersionInfo,
VALID_DEPENDENCY_TYPES,
};

// TODO: will be implemented on story 8.1 (upgrade types)
pub(crate) mod upgrade;

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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"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.10",
"version": "2.0.11",
"description": "Bindings for node from crate workspace-tools",
"main": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.cts",
Expand Down
Loading
Loading