blokctl 0.2.2 → 0.2.4
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.
|
@@ -426,12 +426,14 @@ export async function createProject(opts, version, currentPath = false, localRep
|
|
|
426
426
|
}
|
|
427
427
|
const triggerPackageDeps = {};
|
|
428
428
|
if (selectedTriggers.includes("pubsub")) {
|
|
429
|
-
|
|
430
|
-
|
|
429
|
+
triggerPackageDeps["@blokjs/trigger-pubsub"] = localRepoPath
|
|
430
|
+
? `file:${path.resolve(repoSource, "triggers/pubsub")}`
|
|
431
|
+
: "^0.2.0";
|
|
431
432
|
}
|
|
432
433
|
if (selectedTriggers.includes("queue")) {
|
|
433
|
-
|
|
434
|
-
|
|
434
|
+
triggerPackageDeps["@blokjs/trigger-queue"] = localRepoPath
|
|
435
|
+
? `file:${path.resolve(repoSource, "triggers/queue")}`
|
|
436
|
+
: "^0.2.0";
|
|
435
437
|
}
|
|
436
438
|
if (Object.keys(triggerPackageDeps).length > 0) {
|
|
437
439
|
packageJsonContent.dependencies = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blokctl",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"author": "Deskree Technologies Inc.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "cli for blok",
|
|
@@ -56,7 +56,8 @@
|
|
|
56
56
|
"ai": "^4.3.16",
|
|
57
57
|
"@ai-sdk/openai": "^1.3.22",
|
|
58
58
|
"fast-glob": "^3.3.3",
|
|
59
|
-
"pluralize": "^8.0.0"
|
|
59
|
+
"pluralize": "^8.0.0",
|
|
60
|
+
"typescript": "^5.8.3"
|
|
60
61
|
},
|
|
61
62
|
"devDependencies": {
|
|
62
63
|
"@types/figlet": "^1.7.0",
|
|
@@ -64,7 +65,6 @@
|
|
|
64
65
|
"@types/node": "^22.15.21",
|
|
65
66
|
"@types/react": "^19.2.10",
|
|
66
67
|
"rimraf": "^6.1.2",
|
|
67
|
-
"typescript": "^5.8.3",
|
|
68
68
|
"vitest": "^4.0.18",
|
|
69
69
|
"@types/pluralize": "^0.0.33"
|
|
70
70
|
},
|