packages/codemods/v5-0-0/13-rename-xxl-to-2xl.md
xxl to 2xlComplexity: Moderate (false positive risk — xxl may appear as block IDs or custom data)
Rename all xxl breakpoint references to 2xl in Lowdefy YAML configs. This covers YAML keys, quoted string values, and bare values.
Search all .yaml and .yml files in the project (excluding . directories and node_modules).
xxl: at the start of a line (after optional whitespace). Examples: xxl:, xxl: { span: 4 }"xxl" or 'xxl' as values (typically _media comparisons like _eq: [_media: size, "xxl"])xxl as an unquoted value after - or : at end of lineFor each file with matches:
xxl, or string data unrelated to breakpoints).xxl: key at start of line (preserving indent) becomes 2xl:"xxl" becomes "2xl"'xxl' becomes '2xl'xxl after - or : at end of line becomes 2xlxxl: that is a block ID or custom property name (not a breakpoint override)"xxl" stored as data (not a _media comparison)xxl inside comments (leave comments alone -- they are documentation)Report the number of files modified and replacements made.