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
11 changes: 0 additions & 11 deletions .changeset/initial-configs.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/initial-error-handling.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/initial-logger.md

This file was deleted.

10 changes: 10 additions & 0 deletions configs/eslint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @deepracticex/eslint-config

## 0.1.0

### Minor Changes

- 2249ddb: Initial release of configuration packages
- @deepracticex/eslint-config: ESLint 9 flat config with TypeScript support
- @deepracticex/prettier-config: Shared Prettier configuration
- @deepracticex/typescript-config: Strict TypeScript base configuration
2 changes: 1 addition & 1 deletion configs/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepracticex/eslint-config",
"version": "0.0.1",
"version": "0.1.0",
"description": "Shared ESLint configuration for Deepractice projects",
"type": "module",
"main": "./index.js",
Expand Down
10 changes: 10 additions & 0 deletions configs/prettier/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @deepracticex/prettier-config

## 0.1.0

### Minor Changes

- 2249ddb: Initial release of configuration packages
- @deepracticex/eslint-config: ESLint 9 flat config with TypeScript support
- @deepracticex/prettier-config: Shared Prettier configuration
- @deepracticex/typescript-config: Strict TypeScript base configuration
2 changes: 1 addition & 1 deletion configs/prettier/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepracticex/prettier-config",
"version": "0.0.1",
"version": "0.1.0",
"description": "Shared Prettier configuration for Deepractice projects",
"type": "module",
"main": "./index.js",
Expand Down
10 changes: 10 additions & 0 deletions configs/typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# @deepracticex/typescript-config

## 0.1.0

### Minor Changes

- 2249ddb: Initial release of configuration packages
- @deepracticex/eslint-config: ESLint 9 flat config with TypeScript support
- @deepracticex/prettier-config: Shared Prettier configuration
- @deepracticex/typescript-config: Strict TypeScript base configuration
2 changes: 1 addition & 1 deletion configs/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepracticex/typescript-config",
"version": "0.0.1",
"version": "0.1.0",
"description": "Shared TypeScript configuration for Deepractice projects",
"type": "module",
"main": "./base.json",
Expand Down
14 changes: 14 additions & 0 deletions packages/error-handling/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @deepracticex/error-handling

## 0.1.0

### Minor Changes

- 2249ddb: Initial release of error-handling package
- Type-safe error classes for HTTP errors (400, 401, 403, 404, 409, 422, 429, 500, 503)
- Business error classes (DatabaseError, ExternalServiceError, ConfigurationError, BusinessRuleError)
- Convenient error factory API
- Express and Hono middleware support
- Result/Either pattern for functional error handling
- Full TypeScript support with proper type exports
- Comprehensive BDD tests with Cucumber
2 changes: 1 addition & 1 deletion packages/error-handling/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepracticex/error-handling",
"version": "0.0.1",
"version": "0.1.0",
"description": "Unified error handling system for Deepractice projects",
"type": "module",
"main": "./dist/index.js",
Expand Down
15 changes: 15 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @deepracticex/logger

## 0.1.0

### Minor Changes

- 2249ddb: Initial release of logger package
- Pino-based high-performance logging
- Automatic caller location tracking (package, file, line number)
- Daily log rotation with separate error logs
- MCP stdio mode compatibility (auto-disables colors)
- Electron compatibility (sync mode for worker thread issues)
- Flexible API supporting multiple call patterns
- Custom logger instances with package names
- Full TypeScript support
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deepracticex/logger",
"version": "0.0.1",
"version": "0.1.0",
"description": "Unified logging system for Deepractice projects using Pino",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading