Releases: Andriiklymiuk/corgi
Releases · Andriiklymiuk/corgi
v1.7.6
v1.7.5
v1.7.4
v1.7.3
v1.7.2
v1.7.1
v1.7.0
Changelog
BREAKING CHANGES:
- 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
- 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