SImpCICD source files
Go to file
2023-05-10 17:23:38 +02:00
.simp/config sort pips when ls 2022-10-03 17:16:18 +02:00
bin moved 2022-03-27 13:29:39 +02:00
docs updated conf 2022-09-11 11:26:26 +02:00
public add main entry package json 2022-04-05 12:08:29 +02:00
src sort pips when ls 2022-10-03 17:16:18 +02:00
test feature trigger pipeline in background 2022-02-18 16:17:39 +01:00
.eslintignore the beginning 2022-01-25 17:25:50 +01:00
.eslintrc.js updated conf 2022-09-11 11:26:26 +02:00
.gitignore removed log files from repo 2022-02-07 15:35:34 +01:00
.npmignore .npmignore 2022-01-29 15:20:21 +01:00
.nvmrc fix hooks symlink 2022-02-04 12:45:00 +01:00
.prettierrc.js the beginning 2022-01-25 17:25:50 +01:00
CONTRIBUTING.md node child process beacause google zx suks 2022-01-26 16:31:03 +01:00
package.json updated readme 2023-05-10 17:23:38 +02:00
pnpm-lock.yaml deprecated notice 2023-05-10 17:07:08 +02:00
README.md updated readme 2023-05-10 17:23:38 +02:00
rollup.cli.config.ts updated conf 2022-09-11 11:26:26 +02:00
rollup.config.ts banner in index 2022-04-05 11:58:49 +02:00
rollup.types.config.ts fix export types 2022-02-16 09:46:24 +01:00
simp.config.mjs export syntax 2022-09-04 20:15:10 +02:00
simp.config.ts deprecated notice 2023-05-10 17:07:08 +02:00
tsconfig.build.json updated conf 2022-09-11 11:26:26 +02:00
tsconfig.json updated conf 2022-09-11 11:26:26 +02:00
tsconfig.types.json updated conf 2022-09-11 11:26:26 +02:00

Simp CICD

Even the smallest projects need their CICD tools.

It is now refactored as Pipelight

Is Archived but... REFACTORED

Simpcicd was a prototype... full of bugs... But the idea of a convenient deployment tool has deeply matured since its launch.

It is now reborn as Pipelight

Stop downloading this shit... UPGRADE TO PIPELIGHT!

Deployment made easy.

Downloads Version License Chat

Check the doc at Pipelight

Your usual shell script...

#simple_example.sh
## List files
ls;
## Get working directory
pwd;

...rewrited into a Pipeline...

{
  name: "simple_example",
  steps: [
    {
      name: "list files",
      commands: ["ls"]
    },
    {
      name: "get working directory",
      commands: ["pwd"]
    }
  ]
}

...gets automatic triggers and pretty logs.

example pretty verbose logs