endorphin-ai 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -215,7 +215,7 @@ If you prefer manual setup:
215
215
 
216
216
  ## 🔄 Staying Updated
217
217
 
218
- ### Current Version: v0.6.0
218
+ ### Current Version: v0.6.1
219
219
 
220
220
  ```bash
221
221
  # Check your current version
@@ -228,12 +228,12 @@ npm update endorphin-ai
228
228
  npx endorphin --help
229
229
  ```
230
230
 
231
- ### What's New in v0.6.0
232
- - ✅ **Enhanced CLI** with dual command names (`endorphin` and `endorphin-ai`)
233
- - ✅ **Improved HTML Reports** with better filtering and search
234
- - ✅ **Security-First** with automated vulnerability scanning
235
- - ✅ **Cross-Platform CI/CD** support for Windows, Linux, and macOS
236
- - ✅ **Production-Ready** compiled JavaScript without tsx dependency
231
+ ### What's New in v0.6.1
232
+ - ✅ **Fixed npx Resolution Issues** with post-install script and npm script alternatives
233
+ - ✅ **Enhanced User Experience** with clear troubleshooting guidance
234
+ - ✅ **Reliable Installation** that works regardless of npm/npx behavior
235
+ - ✅ **Multiple Access Methods** including guaranteed npm scripts
236
+ - ✅ **Better Documentation** with comprehensive troubleshooting section
237
237
 
238
238
  ## 🚀 Project Initialization
239
239
 
@@ -875,7 +875,8 @@ npx endorphin --version
875
875
 
876
876
  ### Version History & Features
877
877
 
878
- - **v0.6.0** *(Latest)*: Enhanced CLI, security-first publishing, cross-platform CI/CD
878
+ - **v0.6.1** *(Latest)*: Fixed npx resolution issues, enhanced user experience
879
+ - **v0.6.0**: Enhanced CLI, security-first publishing, cross-platform CI/CD
879
880
  - **v0.5.0**: Advanced HTML reporting with interactive features
880
881
  - **v0.4.0**: TypeScript-first experience with full type definitions
881
882
  - **v0.3.0**: Added `endorphin init` command for instant project setup
Binary file
@@ -2,7 +2,7 @@
2
2
  * Configuration loader for Endorphin AI
3
3
  * Handles loading and merging of configuration from multiple sources
4
4
  */
5
- import type { CLIFlags, FrameworkConfig } from '../types/index.js';
5
+ import type { CLIFlags, FrameworkConfig } from '@/types/index';
6
6
  export declare class ConfigLoader {
7
7
  private defaultConfig;
8
8
  constructor();
@@ -2,7 +2,7 @@
2
2
  * Test Manager - Handles test discovery, loading, and execution coordination (TypeScript)
3
3
  * Manages individual test files in the tests/ folder
4
4
  */
5
- import type { TaskResult, TestConfig } from '../types/index.js';
5
+ import type { TaskResult, TestConfig } from '@/types/index';
6
6
  interface LoadedTest extends TestConfig {
7
7
  filename: string;
8
8
  filePath: string;
@@ -2,7 +2,7 @@
2
2
  * Test Results Manager Module
3
3
  * Handles test result collection, storage, and processing
4
4
  */
5
- import type { TestReport, TestSession } from '../types/index.js';
5
+ import type { TestReport, TestSession } from '@/types/index';
6
6
  export interface TestResultsManagerOptions {
7
7
  resultsDir?: string;
8
8
  recorderDir?: string;
@@ -3,7 +3,7 @@
3
3
  * Parses test result data from the test-results directory
4
4
  * Handles aggregation and processing of test execution data for reporting
5
5
  */
6
- import type { TestSession, TestSummary } from '../types/index.js';
6
+ import type { TestSession, TestSummary } from '@/types/index';
7
7
  /**
8
8
  * Parsed test result data structure
9
9
  */