Update libs (#28)
* added prompt context library * updated libs, except chalk that should not be updated * updated libs and fixed speed
This commit is contained in:
@@ -27,7 +27,7 @@ module.exports = {
|
||||
const { system, strings, print } = toolbox;
|
||||
|
||||
const pipelines = JSON.parse(
|
||||
strings.trim(await system.run(`aws codepipeline list-pipelines`))
|
||||
strings.trim(await system.run(`aws codepipeline list-pipelines`)),
|
||||
);
|
||||
|
||||
// const testPipelines = pipelines.pipelines.filter(item => {
|
||||
@@ -65,8 +65,8 @@ module.exports = {
|
||||
const pipelineState = JSON.parse(
|
||||
await system.run(
|
||||
`aws codepipeline get-pipeline-state --name ${pipelineName}`,
|
||||
{ trim: true }
|
||||
)
|
||||
{ trim: true },
|
||||
),
|
||||
);
|
||||
const states = {};
|
||||
for (const state of pipelineState.stageStates) {
|
||||
|
||||
Reference in New Issue
Block a user