@runfusion/fusion 0.0.2 → 0.0.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.
- package/LICENSE +21 -0
- package/README.md +20 -3
- package/dist/bin.js +88 -32
- package/dist/client/assets/index-9GdD09x7.css +1 -0
- package/dist/client/assets/{index-bkmXzXw5.js → index-wtVkS5Qz.js} +213 -213
- package/dist/client/index.html +2 -2
- package/dist/extension.js +2 -2
- package/package.json +14 -14
- package/dist/client/assets/index-Dr0THfBG.css +0 -1
package/dist/client/index.html
CHANGED
|
@@ -78,11 +78,11 @@
|
|
|
78
78
|
}
|
|
79
79
|
})();
|
|
80
80
|
</script>
|
|
81
|
-
<script type="module" crossorigin src="/assets/index-
|
|
81
|
+
<script type="module" crossorigin src="/assets/index-wtVkS5Qz.js"></script>
|
|
82
82
|
<link rel="modulepreload" crossorigin href="/assets/vendor-react-K0fH_qHe.js">
|
|
83
83
|
<link rel="modulepreload" crossorigin href="/assets/vendor-xterm-DzcZoU0P.js">
|
|
84
84
|
<link rel="stylesheet" crossorigin href="/assets/vendor-xterm-LZoznX6r.css">
|
|
85
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
85
|
+
<link rel="stylesheet" crossorigin href="/assets/index-9GdD09x7.css">
|
|
86
86
|
</head>
|
|
87
87
|
<body>
|
|
88
88
|
<div id="root"></div>
|
package/dist/extension.js
CHANGED
|
@@ -34456,7 +34456,7 @@ async function syncBackupAutomation(automationStore, settings) {
|
|
|
34456
34456
|
if (!AutomationStore2.isValidCron(schedule)) {
|
|
34457
34457
|
throw new Error(`Invalid backup schedule: ${schedule}`);
|
|
34458
34458
|
}
|
|
34459
|
-
const command = "
|
|
34459
|
+
const command = "npx runfusion.ai backup --create";
|
|
34460
34460
|
if (existingSchedule) {
|
|
34461
34461
|
return await automationStore.updateSchedule(existingSchedule.id, {
|
|
34462
34462
|
scheduleType: "custom",
|
|
@@ -34489,7 +34489,7 @@ async function syncBackupRoutine(routineStore, settings) {
|
|
|
34489
34489
|
if (!RoutineStore2.isValidCron(schedule)) {
|
|
34490
34490
|
throw new Error(`Invalid backup schedule: ${schedule}`);
|
|
34491
34491
|
}
|
|
34492
|
-
const command = "
|
|
34492
|
+
const command = "npx runfusion.ai backup --create";
|
|
34493
34493
|
const input = {
|
|
34494
34494
|
name: BACKUP_SCHEDULE_NAME,
|
|
34495
34495
|
description: "Automatic database backup based on project settings",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runfusion/fusion",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Fusion CLI: HTTP API server, daemon, dashboard launcher, and task tooling for the Fusion AI coding agent.",
|
|
6
6
|
"homepage": "https://github.com/Runfusion/Fusion#readme",
|
|
@@ -36,14 +36,6 @@
|
|
|
36
36
|
"skill/**",
|
|
37
37
|
"README.md"
|
|
38
38
|
],
|
|
39
|
-
"scripts": {
|
|
40
|
-
"dev": "tsx src/bin.ts",
|
|
41
|
-
"build": "tsup",
|
|
42
|
-
"build:exe": "bun run build.ts",
|
|
43
|
-
"build:exe:all": "bun run build.ts --all",
|
|
44
|
-
"typecheck": "tsc --noEmit",
|
|
45
|
-
"test": "vitest run --silent=passed-only --reporter=dot"
|
|
46
|
-
},
|
|
47
39
|
"dependencies": {
|
|
48
40
|
"@mariozechner/pi-ai": "^0.62.0",
|
|
49
41
|
"@mariozechner/pi-coding-agent": "^0.62.0",
|
|
@@ -68,9 +60,6 @@
|
|
|
68
60
|
}
|
|
69
61
|
},
|
|
70
62
|
"devDependencies": {
|
|
71
|
-
"@fusion/core": "workspace:*",
|
|
72
|
-
"@fusion/dashboard": "workspace:*",
|
|
73
|
-
"@fusion/engine": "workspace:*",
|
|
74
63
|
"@sinclair/typebox": "^0.34.0",
|
|
75
64
|
"@types/node": "^22.0.0",
|
|
76
65
|
"@vitest/coverage-v8": "^3.1.0",
|
|
@@ -78,10 +67,21 @@
|
|
|
78
67
|
"tsx": "^4.19.0",
|
|
79
68
|
"typescript": "^5.7.0",
|
|
80
69
|
"vitest": "^3.1.0",
|
|
81
|
-
"yaml": "^2.8.3"
|
|
70
|
+
"yaml": "^2.8.3",
|
|
71
|
+
"@fusion/core": "0.1.0",
|
|
72
|
+
"@fusion/engine": "0.1.0",
|
|
73
|
+
"@fusion/dashboard": "0.1.0"
|
|
82
74
|
},
|
|
83
75
|
"repository": {
|
|
84
76
|
"type": "git",
|
|
85
77
|
"url": "https://github.com/Runfusion/Fusion"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"dev": "tsx src/bin.ts",
|
|
81
|
+
"build": "tsup",
|
|
82
|
+
"build:exe": "bun run build.ts",
|
|
83
|
+
"build:exe:all": "bun run build.ts --all",
|
|
84
|
+
"typecheck": "tsc --noEmit",
|
|
85
|
+
"test": "vitest run --silent=passed-only --reporter=dot"
|
|
86
86
|
}
|
|
87
|
-
}
|
|
87
|
+
}
|