Files
2026-01-07 13:04:16 +01:00

25 lines
663 B
YAML

# yaml-language-server: $schema=https://raw.githubusercontent.com/codemod/codemod/refs/heads/main/schemas/workflow.json
version: '1'
nodes:
- id: apply-transforms
name: Apply AST Transformations
type: automatic
steps:
- name: 'Transform render() calls to await render()'
js-ast-grep:
js_file: scripts/codemod.ts
language: 'tsx'
include:
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.jsx'
exclude:
- '**/node_modules/**'
- '**/build/**'
- '**/dist/**'
- '**/.next/**'
- '**/coverage/**'