For the complete documentation index, see llms.txt. This page is also available as Markdown.

Migration guide from 0.x.x to 1.0.0

Migration

1. Update configuration file name

First, update configuration file name from .readymage.yamlreadymage.yaml

2. Update property names

Convert camelCase property names to snake_case.

For example:

  • schemaVersionschema_version

  • preBuildpre_build

  • postBuildpost_build

3. Update hooks

Contents of hooks have been moved from array type to regular key-values

hooks:
- preBuild: ...
- postBuild: ...

3. Update actions

Copy

Move

Example migration

Last updated