Basic text transformations on an input stream
// acao.config.ts
import { defineConfig, run } from 'acao'
import { sedSubstitute } from 'acao/sed'
export default defineConfig({
jobs: {
ci: {
steps: [
sedSubstitute('~/docker-compose.yml', { inPlace: false, values: [{ find: '3', replacement: '2' }] }),
],
},
},
})