@backtest-kit/cli 7.8.0 → 8.1.0
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/build/index.cjs +7 -7
- package/build/index.mjs +7 -7
- package/package.json +13 -13
- package/template/project/package.mustache +5 -5
package/build/index.cjs
CHANGED
|
@@ -455,10 +455,10 @@ const ALLOWED_EXTENSIONS = [
|
|
|
455
455
|
const DISALLOWED_PATHS = [
|
|
456
456
|
"node_modules",
|
|
457
457
|
"@backtest-kit",
|
|
458
|
-
"build/index.mjs",
|
|
459
|
-
"build/index.js",
|
|
460
|
-
"build\\index.mjs",
|
|
461
|
-
"build\\index.js",
|
|
458
|
+
"cli/build/index.mjs",
|
|
459
|
+
"cli/build/index.js",
|
|
460
|
+
"cli\\build\\index.mjs",
|
|
461
|
+
"cli\\build\\index.js",
|
|
462
462
|
];
|
|
463
463
|
const getArgs = functoolsKit.singleshot(() => {
|
|
464
464
|
const { values, positionals } = util.parseArgs({
|
|
@@ -3014,7 +3014,7 @@ const main$e = async () => {
|
|
|
3014
3014
|
if (MODES.some((mode) => values[mode])) {
|
|
3015
3015
|
return;
|
|
3016
3016
|
}
|
|
3017
|
-
process.stdout.write(`@backtest-kit/cli ${"
|
|
3017
|
+
process.stdout.write(`@backtest-kit/cli ${"8.1.0"}\n`);
|
|
3018
3018
|
process.stdout.write("\n");
|
|
3019
3019
|
process.stdout.write(`Run with --help to see available commands.\n`);
|
|
3020
3020
|
process.stdout.write("\n");
|
|
@@ -3793,7 +3793,7 @@ const main$1 = async () => {
|
|
|
3793
3793
|
if (!values.help) {
|
|
3794
3794
|
return;
|
|
3795
3795
|
}
|
|
3796
|
-
process.stdout.write(`@backtest-kit/cli ${"
|
|
3796
|
+
process.stdout.write(`@backtest-kit/cli ${"8.1.0"}\n\n`);
|
|
3797
3797
|
process.stdout.write(HELP_TEXT);
|
|
3798
3798
|
process.exit(0);
|
|
3799
3799
|
};
|
|
@@ -3807,7 +3807,7 @@ const main = async () => {
|
|
|
3807
3807
|
if (!values.version) {
|
|
3808
3808
|
return;
|
|
3809
3809
|
}
|
|
3810
|
-
process.stdout.write(`@backtest-kit/cli ${"
|
|
3810
|
+
process.stdout.write(`@backtest-kit/cli ${"8.1.0"}\n`);
|
|
3811
3811
|
process.exit(0);
|
|
3812
3812
|
};
|
|
3813
3813
|
main();
|
package/build/index.mjs
CHANGED
|
@@ -430,10 +430,10 @@ const ALLOWED_EXTENSIONS = [
|
|
|
430
430
|
const DISALLOWED_PATHS = [
|
|
431
431
|
"node_modules",
|
|
432
432
|
"@backtest-kit",
|
|
433
|
-
"build/index.mjs",
|
|
434
|
-
"build/index.js",
|
|
435
|
-
"build\\index.mjs",
|
|
436
|
-
"build\\index.js",
|
|
433
|
+
"cli/build/index.mjs",
|
|
434
|
+
"cli/build/index.js",
|
|
435
|
+
"cli\\build\\index.mjs",
|
|
436
|
+
"cli\\build\\index.js",
|
|
437
437
|
];
|
|
438
438
|
const getArgs = singleshot(() => {
|
|
439
439
|
const { values, positionals } = parseArgs({
|
|
@@ -2985,7 +2985,7 @@ const main$e = async () => {
|
|
|
2985
2985
|
if (MODES.some((mode) => values[mode])) {
|
|
2986
2986
|
return;
|
|
2987
2987
|
}
|
|
2988
|
-
process.stdout.write(`@backtest-kit/cli ${"
|
|
2988
|
+
process.stdout.write(`@backtest-kit/cli ${"8.1.0"}\n`);
|
|
2989
2989
|
process.stdout.write("\n");
|
|
2990
2990
|
process.stdout.write(`Run with --help to see available commands.\n`);
|
|
2991
2991
|
process.stdout.write("\n");
|
|
@@ -3764,7 +3764,7 @@ const main$1 = async () => {
|
|
|
3764
3764
|
if (!values.help) {
|
|
3765
3765
|
return;
|
|
3766
3766
|
}
|
|
3767
|
-
process.stdout.write(`@backtest-kit/cli ${"
|
|
3767
|
+
process.stdout.write(`@backtest-kit/cli ${"8.1.0"}\n\n`);
|
|
3768
3768
|
process.stdout.write(HELP_TEXT);
|
|
3769
3769
|
process.exit(0);
|
|
3770
3770
|
};
|
|
@@ -3778,7 +3778,7 @@ const main = async () => {
|
|
|
3778
3778
|
if (!values.version) {
|
|
3779
3779
|
return;
|
|
3780
3780
|
}
|
|
3781
|
-
process.stdout.write(`@backtest-kit/cli ${"
|
|
3781
|
+
process.stdout.write(`@backtest-kit/cli ${"8.1.0"}\n`);
|
|
3782
3782
|
process.exit(0);
|
|
3783
3783
|
};
|
|
3784
3784
|
main();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backtest-kit/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "Zero-boilerplate CLI runner for backtest-kit strategies. Run backtests, paper trading, and live bots with candle cache warming, web dashboard, and Telegram notifications — no setup code required.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@babel/plugin-transform-modules-umd": "7.27.1",
|
|
64
64
|
"@babel/standalone": "7.29.1",
|
|
65
|
-
"@backtest-kit/graph": "
|
|
66
|
-
"@backtest-kit/ollama": "
|
|
67
|
-
"@backtest-kit/pinets": "
|
|
68
|
-
"@backtest-kit/signals": "
|
|
69
|
-
"@backtest-kit/ui": "
|
|
65
|
+
"@backtest-kit/graph": "8.1.0",
|
|
66
|
+
"@backtest-kit/ollama": "8.1.0",
|
|
67
|
+
"@backtest-kit/pinets": "8.1.0",
|
|
68
|
+
"@backtest-kit/signals": "8.1.0",
|
|
69
|
+
"@backtest-kit/ui": "8.1.0",
|
|
70
70
|
"@rollup/plugin-replace": "6.0.3",
|
|
71
71
|
"@rollup/plugin-typescript": "11.1.6",
|
|
72
72
|
"@types/image-size": "0.7.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@types/mustache": "4.2.6",
|
|
75
75
|
"@types/node": "22.9.0",
|
|
76
76
|
"@types/stack-trace": "0.0.33",
|
|
77
|
-
"backtest-kit": "
|
|
77
|
+
"backtest-kit": "8.1.0",
|
|
78
78
|
"glob": "11.0.1",
|
|
79
79
|
"markdown-it": "14.1.1",
|
|
80
80
|
"rimraf": "6.0.1",
|
|
@@ -89,12 +89,12 @@
|
|
|
89
89
|
"peerDependencies": {
|
|
90
90
|
"@babel/plugin-transform-modules-umd": "^7.27.1",
|
|
91
91
|
"@babel/standalone": "^7.29.1",
|
|
92
|
-
"@backtest-kit/graph": "^
|
|
93
|
-
"@backtest-kit/ollama": "^
|
|
94
|
-
"@backtest-kit/pinets": "^
|
|
95
|
-
"@backtest-kit/signals": "^
|
|
96
|
-
"@backtest-kit/ui": "^
|
|
97
|
-
"backtest-kit": "^
|
|
92
|
+
"@backtest-kit/graph": "^8.1.0",
|
|
93
|
+
"@backtest-kit/ollama": "^8.1.0",
|
|
94
|
+
"@backtest-kit/pinets": "^8.1.0",
|
|
95
|
+
"@backtest-kit/signals": "^8.1.0",
|
|
96
|
+
"@backtest-kit/ui": "^8.1.0",
|
|
97
|
+
"backtest-kit": "^8.1.0",
|
|
98
98
|
"markdown-it": "^14.1.1",
|
|
99
99
|
"typescript": "^5.0.0"
|
|
100
100
|
},
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"type": "commonjs",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@backtest-kit/cli": "^
|
|
17
|
-
"@backtest-kit/graph": "^
|
|
18
|
-
"@backtest-kit/pinets": "^
|
|
19
|
-
"@backtest-kit/ui": "^
|
|
16
|
+
"@backtest-kit/cli": "^8.1.0",
|
|
17
|
+
"@backtest-kit/graph": "^8.1.0",
|
|
18
|
+
"@backtest-kit/pinets": "^8.1.0",
|
|
19
|
+
"@backtest-kit/ui": "^8.1.0",
|
|
20
20
|
"agent-swarm-kit": "^2.6.0",
|
|
21
|
-
"backtest-kit": "^
|
|
21
|
+
"backtest-kit": "^8.1.0",
|
|
22
22
|
"functools-kit": "^2.3.0",
|
|
23
23
|
"garch": "^1.2.3",
|
|
24
24
|
"get-moment-stamp": "^1.1.2",
|