@tamyla/clodo-framework 3.1.11 → 3.1.12

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [3.1.12](https://github.com/tamylaa/clodo-framework/compare/v3.1.11...v3.1.12) (2025-10-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update babel import rewriter to handle bin/ paths too ([6e26172](https://github.com/tamylaa/clodo-framework/commit/6e26172bbc2f697a59de0ea5567665094d4027b1))
7
+
1
8
  ## [3.1.11](https://github.com/tamylaa/clodo-framework/compare/v3.1.10...v3.1.11) (2025-10-27)
2
9
 
3
10
 
@@ -2,7 +2,7 @@ import { spawn } from 'child_process';
2
2
  import { execSync } from 'child_process';
3
3
  import fs from 'fs';
4
4
  import path from 'path';
5
- import { WranglerD1Manager } from '../../bin/database/wrangler-d1-manager.js';
5
+ import { WranglerD1Manager } from "../../dist/bin/database/wrangler-d1-manager.js";
6
6
 
7
7
  /**
8
8
  * WranglerDeployer - Executes actual Cloudflare Workers deployments using wrangler CLI
@@ -19,13 +19,13 @@
19
19
 
20
20
  import { access } from 'fs/promises';
21
21
  import { MultiDomainOrchestrator } from './multi-domain-orchestrator.js';
22
- import { DeploymentValidator } from '../../bin/shared/deployment/validator.js';
23
- import { RollbackManager } from '../../bin/shared/deployment/rollback-manager.js';
24
- import { DomainDiscovery } from '../../bin/shared/cloudflare/domain-discovery.js';
22
+ import { DeploymentValidator } from "../../dist/bin/shared/deployment/validator.js";
23
+ import { RollbackManager } from "../../dist/bin/shared/deployment/rollback-manager.js";
24
+ import { DomainDiscovery } from "../../dist/bin/shared/cloudflare/domain-discovery.js";
25
25
  import { DatabaseOrchestrator } from '../database/database-orchestrator.js';
26
26
  import { EnhancedSecretManager } from '../utils/deployment/secret-generator.js';
27
- import { ProductionTester } from '../../bin/shared/production-tester/index.js';
28
- import { DeploymentAuditor } from '../../bin/shared/deployment/auditor.js';
27
+ import { ProductionTester } from "../../dist/bin/shared/production-tester/index.js";
28
+ import { DeploymentAuditor } from "../../dist/bin/shared/deployment/auditor.js";
29
29
  import { ConfigurationCacheManager } from '../utils/deployment/config-cache.js';
30
30
  export class CrossDomainCoordinator {
31
31
  constructor(options = {}) {
@@ -6,7 +6,7 @@
6
6
  import { ConfigurationValidator } from './ConfigurationValidator.js';
7
7
  // DeploymentManager removed - replaced by MultiDomainOrchestrator + WranglerConfigManager
8
8
  import { SecretGenerator } from './SecretGenerator.js';
9
- import { ErrorHandler } from '../../bin/shared/utils/index.js';
9
+ import { ErrorHandler } from "../../dist/bin/shared/utils/index.js";
10
10
  // InteractiveDeploymentConfigurator removed - replaced by InputCollector
11
11
 
12
12
  export { ConfigurationValidator } from './ConfigurationValidator.js';
@@ -34,7 +34,7 @@
34
34
  import { createInterface } from 'readline';
35
35
  import chalk from 'chalk';
36
36
  import { validateServiceName, validateDomainName } from '../utils/validation.js';
37
- import { NameFormatters, UrlFormatters, ResourceFormatters } from '../../bin/shared/utils/Formatters.js';
37
+ import { NameFormatters, UrlFormatters, ResourceFormatters } from "../../dist/bin/shared/utils/Formatters.js";
38
38
  export class ConfirmationEngine {
39
39
  constructor(options = {}) {
40
40
  this.interactive = options.interactive !== false;
@@ -8,7 +8,7 @@
8
8
  import fs from 'fs/promises';
9
9
  import path from 'path';
10
10
  import chalk from 'chalk';
11
- import { logger } from '../../bin/shared/logging/Logger.js';
11
+ import { logger } from "../../dist/bin/shared/logging/Logger.js";
12
12
  export class ErrorTracker {
13
13
  constructor() {
14
14
  this.errors = [];
@@ -15,7 +15,7 @@ import { createInterface } from 'readline';
15
15
  import chalk from 'chalk';
16
16
  import { validateServiceName, validateDomainName } from '../utils/validation.js';
17
17
  import { uiStructuresLoader } from '../utils/ui-structures-loader.js';
18
- import { NameFormatters, UrlFormatters, ResourceFormatters } from '../../bin/shared/utils/Formatters.js';
18
+ import { NameFormatters, UrlFormatters, ResourceFormatters } from "../../dist/bin/shared/utils/Formatters.js";
19
19
 
20
20
  // Assessment capabilities moved to @tamyla/clodo-orchestration (professional edition)
21
21
 
@@ -7,7 +7,7 @@ import { readdirSync, statSync, cpSync, rmSync } from 'fs';
7
7
  import { join, dirname, resolve } from 'path';
8
8
  import { fileURLToPath } from 'url';
9
9
  import { FrameworkConfig } from '../utils/framework-config.js';
10
- import { FileManager } from '../../bin/shared/utils/file-manager.js';
10
+ import { FileManager } from "../../dist/bin/shared/utils/file-manager.js";
11
11
  const SERVICE_TYPES = ['data-service', 'auth-service', 'content-service', 'api-gateway', 'generic'];
12
12
  export class ServiceCreator {
13
13
  constructor(options = {}) {
@@ -6,7 +6,7 @@
6
6
  import { readdirSync } from 'fs';
7
7
  import { join, dirname, resolve } from 'path';
8
8
  import { fileURLToPath } from 'url';
9
- import { FileManager } from '../../bin/shared/utils/file-manager.js';
9
+ import { FileManager } from "../../dist/bin/shared/utils/file-manager.js";
10
10
 
11
11
  // Get framework root - handle both ES module and CommonJS environments
12
12
  const getFrameworkRoot = () => {
@@ -15,7 +15,7 @@
15
15
  import { readdirSync, statSync } from 'fs';
16
16
  import { resolve, join } from 'path';
17
17
  import { getDirname } from '../esm-helper.js';
18
- import { FileManager } from '../../../bin/shared/utils/file-manager.js';
18
+ import { FileManager } from "../../../dist/bin/shared/utils/file-manager.js";
19
19
  const __dirname = getDirname(import.meta.url, 'src/utils/config');
20
20
 
21
21
  // Simple inline logger to avoid circular dependency with index.js
@@ -22,7 +22,7 @@ import { join, dirname } from 'path';
22
22
  import { promisify } from 'util';
23
23
  import { exec } from 'child_process';
24
24
  import { frameworkConfig } from '../framework-config.js';
25
- import { NameFormatters } from '../../../bin/shared/utils/Formatters.js';
25
+ import { NameFormatters } from "../../../dist/bin/shared/utils/Formatters.js";
26
26
  const execAsync = promisify(exec);
27
27
  export class ConfigurationCacheManager {
28
28
  constructor(options = {}) {
@@ -15,7 +15,7 @@ import { readdirSync, statSync } from 'fs';
15
15
  import { join, dirname } from 'path';
16
16
  import { execSync } from 'child_process';
17
17
  import { fileURLToPath } from 'url';
18
- import { FileManager } from '../../../bin/shared/utils/file-manager.js';
18
+ import { FileManager } from "../../../dist/bin/shared/utils/file-manager.js";
19
19
  let __filename, __dirname;
20
20
 
21
21
  // Module-level FileManager for standalone functions
@@ -8,7 +8,7 @@
8
8
 
9
9
  import { join, dirname } from 'path';
10
10
  import { fileURLToPath } from 'url';
11
- import { FileManager } from '../../bin/shared/utils/file-manager.js';
11
+ import { FileManager } from "../../dist/bin/shared/utils/file-manager.js";
12
12
  export class FrameworkConfig {
13
13
  constructor(configPath = null) {
14
14
  this.fileManager = new FileManager({
@@ -1,4 +1,4 @@
1
- import { COMMON_FEATURES, ConfigurationManager } from '../../bin/shared/config/ConfigurationManager.js';
1
+ import { COMMON_FEATURES, ConfigurationManager } from "../../dist/bin/shared/config/ConfigurationManager.js";
2
2
  import { getDomainFromEnv, createEnvironmentConfig } from '../config/domains.js';
3
3
 
4
4
  // Create a singleton instance of ConfigurationManager for use in integration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamyla/clodo-framework",
3
- "version": "3.1.11",
3
+ "version": "3.1.12",
4
4
  "description": "Reusable framework for Clodo-style software architecture on Cloudflare Workers + D1",
5
5
  "type": "module",
6
6
  "sideEffects": [