effortless-aws 0.7.0 → 0.7.2
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/cli/index.js +4 -4
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +386 -386
- package/dist/index.js +1 -1512
- package/dist/index.js.map +1 -1
- package/package.json +9 -4
package/dist/cli/index.js
CHANGED
|
@@ -61193,12 +61193,12 @@ function processNext(state) {
|
|
|
61193
61193
|
}
|
|
61194
61194
|
function defaultProcessor(value5, state) {
|
|
61195
61195
|
if (/\d/.test(value5)) {
|
|
61196
|
-
const
|
|
61197
|
-
state.dateParts[state.cursor].setValue(
|
|
61196
|
+
const typed2 = state.typed + value5;
|
|
61197
|
+
state.dateParts[state.cursor].setValue(typed2);
|
|
61198
61198
|
return Action.NextFrame({
|
|
61199
61199
|
state: {
|
|
61200
61200
|
...state,
|
|
61201
|
-
typed
|
|
61201
|
+
typed: typed2
|
|
61202
61202
|
}
|
|
61203
61203
|
});
|
|
61204
61204
|
}
|
|
@@ -66693,7 +66693,7 @@ var getWizardPrefix = (builtIn2, rootCommand, commandLineArgs) => {
|
|
|
66693
66693
|
return appendAll(rootCommand.split(/\s+/), args2);
|
|
66694
66694
|
};
|
|
66695
66695
|
var renderWizardArgs = (args2) => {
|
|
66696
|
-
const params = pipe(filter2(args2, (
|
|
66696
|
+
const params = pipe(filter2(args2, (param2) => param2.length > 0), join(" "));
|
|
66697
66697
|
const executeMsg = text4("You may now execute your command directly with the following options and arguments:");
|
|
66698
66698
|
return blocks([p(strong(code("Wizard Mode Complete!"))), p(executeMsg), p(concat3(text4(" "), highlight(params, cyan3)))]);
|
|
66699
66699
|
};
|