@openfn/cli 1.2.0 → 1.2.1
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/dist/index.js +18 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -356,6 +356,20 @@ var start = {
|
|
|
356
356
|
description: "Specifiy the start step in a workflow"
|
|
357
357
|
}
|
|
358
358
|
};
|
|
359
|
+
var end = {
|
|
360
|
+
name: "end",
|
|
361
|
+
yargs: {
|
|
362
|
+
string: true,
|
|
363
|
+
description: "Specifiy the end step in a workflow"
|
|
364
|
+
}
|
|
365
|
+
};
|
|
366
|
+
var only = {
|
|
367
|
+
name: "only",
|
|
368
|
+
yargs: {
|
|
369
|
+
string: true,
|
|
370
|
+
description: "Specifiy to only run one step in a workflow"
|
|
371
|
+
}
|
|
372
|
+
};
|
|
359
373
|
var skipAdaptorValidation = {
|
|
360
374
|
name: "skip-adaptor-validation",
|
|
361
375
|
yargs: {
|
|
@@ -545,16 +559,18 @@ var options4 = [
|
|
|
545
559
|
autoinstall,
|
|
546
560
|
cacheSteps,
|
|
547
561
|
compile,
|
|
548
|
-
|
|
562
|
+
end,
|
|
549
563
|
ignoreImports,
|
|
564
|
+
immutable,
|
|
550
565
|
inputPath,
|
|
551
566
|
log,
|
|
552
567
|
logJson,
|
|
568
|
+
only,
|
|
553
569
|
outputPath,
|
|
554
570
|
outputStdout,
|
|
555
571
|
repoDir,
|
|
556
|
-
skipAdaptorValidation,
|
|
557
572
|
sanitize,
|
|
573
|
+
skipAdaptorValidation,
|
|
558
574
|
start,
|
|
559
575
|
statePath,
|
|
560
576
|
stateStdin,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfn/cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "CLI devtools for the openfn toolchain.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
46
|
"treeify": "^1.1.0",
|
|
47
47
|
"yargs": "^17.7.2",
|
|
48
|
-
"@openfn/compiler": "0.1.2",
|
|
49
48
|
"@openfn/deploy": "0.4.4",
|
|
49
|
+
"@openfn/compiler": "0.1.2",
|
|
50
50
|
"@openfn/describe-package": "0.0.19",
|
|
51
51
|
"@openfn/logger": "1.0.1",
|
|
52
52
|
"@openfn/runtime": "1.1.2"
|