Skip to content

v1.7.0

Compare
Choose a tag to compare
@Andriiklymiuk Andriiklymiuk released this 31 Aug 07:42
· 7 commits to main since this release

Changelog

BREAKING CHANGES:

  1. removed test section for service

You might migrate yours from test to scripts instead

 test:
    - name: unit
      command:
        - npm run test

instead you might use

 scripts:
    - name: unit
      commands:
        - npm run test
  1. removed corgi test

You might migrate yours from corgi test to corgi scripts instead, e.g.:

before

corgi test --env unit,staging

after

corgi scripts --name unit,staging