@tamyla/clodo-framework 3.1.16 → 3.1.18
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,17 @@
|
|
|
1
|
+
## [3.1.18](https://github.com/tamylaa/clodo-framework/compare/v3.1.17...v3.1.18) (2025-10-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Correct re-export wrapper import paths and add build-time path validator ([293f7b1](https://github.com/tamylaa/clodo-framework/commit/293f7b1537bed9a3c9eafcc96131be863044f313))
|
|
7
|
+
|
|
8
|
+
## [3.1.17](https://github.com/tamylaa/clodo-framework/compare/v3.1.16...v3.1.17) (2025-10-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* Correct re-export path depth in cloudflare ops wrapper (3 levels not 4) ([fa72b2b](https://github.com/tamylaa/clodo-framework/commit/fa72b2b2f1ba0ada932ba42a7a1788a41a7798a1))
|
|
14
|
+
|
|
1
15
|
## [3.1.16](https://github.com/tamylaa/clodo-framework/compare/v3.1.15...v3.1.16) (2025-10-28)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* It gets compiled to dist/ and is included in the published package.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
export { checkAuth, authenticate, storeCloudflareToken, getCloudflareToken, listWorkers, workerExists, deployWorker, deploySecret, deleteSecret, listSecrets, listDatabases, databaseExists, createDatabase, deleteDatabase, runMigrations, executeSql, getDatabaseId, validatePrerequisites } from '
|
|
8
|
+
export { checkAuth, authenticate, storeCloudflareToken, getCloudflareToken, listWorkers, workerExists, deployWorker, deploySecret, deleteSecret, listSecrets, listDatabases, databaseExists, createDatabase, deleteDatabase, runMigrations, executeSql, getDatabaseId, validatePrerequisites } from '../bin/shared/cloudflare/ops.js';
|
package/dist/utils/formatters.js
CHANGED
package/dist/utils/logger.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamyla/clodo-framework",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.18",
|
|
4
4
|
"description": "Reusable framework for Clodo-style software architecture on Cloudflare Workers + D1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"build:ci": "npm run prebuild:ci && babel src/ --out-dir dist/ && babel bin/ --out-dir dist/bin/ --ignore 'bin/**/*.test.js' && node -e \"const fs=require('fs'); fs.cpSync('ui-structures', 'dist/ui-structures', {recursive: true});\" && npm run postbuild",
|
|
69
69
|
"prebuild": "npm run clean && npm run type-check",
|
|
70
70
|
"prebuild:ci": "npm run clean && npm run type-check",
|
|
71
|
-
"postbuild": "npm run check:bundle",
|
|
71
|
+
"postbuild": "npm run check:bundle && npm run check:imports",
|
|
72
72
|
"clean": "rimraf dist",
|
|
73
73
|
"clean:generated": "rimraf generated",
|
|
74
74
|
"clean:all": "npm run clean && npm run clean:generated",
|
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
"type-check": "tsc --noEmit",
|
|
105
105
|
"check:types": "npm run type-check",
|
|
106
106
|
"check:bundle": "node scripts/utilities/check-bundle.js || echo 'Bundle check passed'",
|
|
107
|
+
"check:imports": "node scripts/utilities/check-import-paths.js",
|
|
107
108
|
"check:all": "npm run type-check && npm run test",
|
|
108
109
|
"analyze:bundle": "echo 'Bundle analysis not implemented yet'",
|
|
109
110
|
"docs": "echo 'JSDoc documentation generation not configured yet'",
|