@tamyla/clodo-framework 3.1.25 → 3.1.26
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.26](https://github.com/tamylaa/clodo-framework/compare/v3.1.25...v3.1.26) (2025-12-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* correct import paths for npm package distribution - use proper depth for compiled dist/ files ([d346563](https://github.com/tamylaa/clodo-framework/commit/d3465637e02077e014661e1039421e9cd0010d97))
|
|
7
|
+
|
|
1
8
|
## [3.1.25](https://github.com/tamylaa/clodo-framework/compare/v3.1.24...v3.1.25) (2025-12-02)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
*
|
|
4
4
|
* This module re-exports CLI operations from bin/ for use by the library.
|
|
5
5
|
* It gets compiled to dist/ and is included in the published package.
|
|
6
|
+
*
|
|
7
|
+
* IMPORTANT: Path is adjusted for compilation depth
|
|
8
|
+
* src/utils/cloudflare/ops.js (3 levels) -> dist/utils/cloudflare/ops.js (3 levels)
|
|
9
|
+
* From dist/utils/cloudflare/, need ../../lib/ (up 2 to dist, then lib)
|
|
6
10
|
*/
|
|
7
11
|
|
|
8
|
-
export { checkAuth, authenticate, storeCloudflareToken, getCloudflareToken, listWorkers, workerExists, deployWorker, deploySecret, deleteSecret, listSecrets, listDatabases, databaseExists, createDatabase, deleteDatabase, runMigrations, executeSql, getDatabaseId, validatePrerequisites } from '
|
|
12
|
+
export { checkAuth, authenticate, storeCloudflareToken, getCloudflareToken, listWorkers, workerExists, deployWorker, deploySecret, deleteSecret, listSecrets, listDatabases, databaseExists, createDatabase, deleteDatabase, runMigrations, executeSql, getDatabaseId, validatePrerequisites } from '../../lib/shared/cloudflare/ops.js';
|
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* File Manager - Library Export
|
|
3
3
|
*
|
|
4
|
-
* Re-exports FileManager from
|
|
5
|
-
*
|
|
4
|
+
* Re-exports FileManager from lib/ for library use.
|
|
5
|
+
*
|
|
6
|
+
* IMPORTANT PATH CALCULATION FOR NPM PACKAGE:
|
|
7
|
+
* - Source: src/utils/file-manager.js (2 levels from root)
|
|
8
|
+
* - Compiled: dist/utils/file-manager.js (2 levels from root)
|
|
9
|
+
*
|
|
10
|
+
* When installed via npm, structure is:
|
|
11
|
+
* node_modules/@tamyla/clodo-framework/
|
|
12
|
+
* dist/
|
|
13
|
+
* utils/file-manager.js
|
|
14
|
+
* lib/shared/utils/file-manager.js
|
|
15
|
+
*
|
|
16
|
+
* From dist/utils/, need to go UP one level (../) to reach lib/
|
|
17
|
+
* Source path must account for compilation depth adjustment
|
|
6
18
|
*/
|
|
7
19
|
|
|
8
|
-
export { FileManager } from '
|
|
20
|
+
export { FileManager } from '../lib/shared/utils/file-manager.js';
|
package/dist/utils/formatters.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Name Formatters - Library Export
|
|
3
3
|
*
|
|
4
|
-
* Re-exports NameFormatters from
|
|
5
|
-
*
|
|
4
|
+
* Re-exports NameFormatters from lib/ for library use.
|
|
5
|
+
*
|
|
6
|
+
* IMPORTANT: Path accounts for compilation depth adjustment.
|
|
7
|
+
* When compiled to dist/utils/formatters.js, the path '../lib/'
|
|
8
|
+
* correctly resolves to dist/lib/ in npm packages.
|
|
6
9
|
*/
|
|
7
10
|
|
|
8
|
-
export { NameFormatters } from '
|
|
11
|
+
export { NameFormatters } from '../lib/shared/utils/formatters.js';
|
package/dist/utils/logger.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Logger - Library Export
|
|
3
3
|
*
|
|
4
|
-
* Re-exports Logger from
|
|
5
|
-
*
|
|
4
|
+
* Re-exports Logger from lib/ for library use.
|
|
5
|
+
*
|
|
6
|
+
* IMPORTANT: Path accounts for compilation depth adjustment.
|
|
7
|
+
* When compiled to dist/utils/logger.js, the path '../lib/'
|
|
8
|
+
* correctly resolves to dist/lib/ in npm packages.
|
|
6
9
|
*/
|
|
7
10
|
|
|
8
|
-
export { Logger } from '
|
|
11
|
+
export { Logger } from '../lib/shared/logging/Logger.js';
|