@fairfox/polly 0.1.2 → 0.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fairfox/polly",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Multi-execution-context framework with reactive state and cross-context messaging for Chrome extensions, PWAs, and worker-based applications",
@@ -1,4 +1,4 @@
1
- // Main entry point for @fairfox/polly-analysis
1
+ // Main entry point for ../../analysis/src
2
2
 
3
3
  // Export types
4
4
  export * from "./types";
@@ -1,2 +1,2 @@
1
1
  // Re-export from shared analysis package
2
- export { extractHandlers, HandlerExtractor, type HandlerAnalysis } from "@fairfox/polly-analysis";
2
+ export { extractHandlers, HandlerExtractor, type HandlerAnalysis } from "../../analysis/src";
@@ -1,2 +1,2 @@
1
1
  // Re-export from shared analysis package
2
- export { analyzeCodebase, TypeExtractor } from "@fairfox/polly-analysis";
2
+ export { analyzeCodebase, TypeExtractor } from "../../analysis/src";
@@ -11,7 +11,7 @@ export type {
11
11
  StateAssignment,
12
12
  VerificationCondition,
13
13
  CodebaseAnalysis,
14
- } from "@fairfox/polly-analysis";
14
+ } from "../../analysis/src";
15
15
 
16
16
  export type VerificationConfig = {
17
17
  preset?: "quick" | "balanced" | "thorough";
@@ -3,7 +3,7 @@
3
3
 
4
4
  import * as fs from "node:fs";
5
5
  import * as path from "node:path";
6
- import { analyzeArchitecture } from "@fairfox/polly-analysis";
6
+ import { analyzeArchitecture } from "../../analysis/src";
7
7
  import { generateStructurizrDSL } from "./codegen/structurizr";
8
8
  import { exportDiagrams } from "./runner/export";
9
9
 
@@ -1,6 +1,6 @@
1
1
  // Structurizr DSL generator
2
2
 
3
- import type { ArchitectureAnalysis } from "@fairfox/polly-analysis";
3
+ import type { ArchitectureAnalysis } from "../../analysis/src";
4
4
 
5
5
  export interface StructurizrDSLOptions {
6
6
  /** Include dynamic diagrams for message flows */
@@ -10,4 +10,4 @@ export * from "./runner/export";
10
10
  export * from "./viewer/server";
11
11
 
12
12
  // Re-export analysis functionality for convenience
13
- export { analyzeArchitecture, type ArchitectureAnalysis } from "@fairfox/polly-analysis";
13
+ export { analyzeArchitecture, type ArchitectureAnalysis } from "../../analysis/src";