Skip to content

Instantly share code, notes, and snippets.

View Cliffback's full-sized avatar

Mathias Eek Cliffback

View GitHub Profile
@Cliffback
Cliffback / transform-componentWillLoad.ts
Created November 24, 2025 09:00
Transform componentWillLoad
// AST Transformer to fix angular initial props on versions after `@stencil/[email protected]`
// Can be run with:
// `find path/to/look/for/components -name '*.tsx' | xargs -n 1 npx tsx path/to/script/transform-componentWillLoad.ts`
import ts from 'typescript';
import fs from 'fs';
import path from 'path';
const inPath = process.argv[2];
if (!inPath) {