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:
Arwid Thornström
2025-06-17 10:12:48 +02:00
committed by GitHub
parent 90b9ccc454
commit 5c43d166ba
27 changed files with 2429 additions and 3457 deletions
+3 -3
View File
@@ -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) {