2 Repos
Frameworks for building plugins that perform tree-based or text-based source code transformations.
Distinct from Code Migration Editor Plugins: Distinct from Code Migration Editor Plugins: provides a general framework for transformation logic rather than specifically an editor integration.
Explore 2 awesome GitHub repositories matching development tools & productivity · Code Transformation Plugin Systems. Refine with filters or upvote what's useful.
ts-migrate ist ein automatisiertes Migrationstool, das darauf ausgelegt ist, JavaScript-Quellcode in kompilierfähige TypeScript-Dateien zu transformieren. Es fungiert als Code-Migrations-Framework, das abstrakte Syntaxbäume (ASTs) verwendet, um großflächige Refactorings und strukturelle Änderungen an einem Projekt durchzuführen. Das Tool bietet ein anpassbares Framework zur Definition von Plugin-basierten Transformationsregeln, was die Automatisierung spezifischer Code-Änderungen ermöglicht. Es enthält spezialisierte Engines für die Konvertierung von JSDoc-Typdefinitionen in native TypeScript-Annotationen sowie ein Dienstprogramm zur Unterdrückung von Compiler-Fehlern durch das Einfügen von Typ-Assertions oder Ignore-Kommentaren. Das System deckt ein breites Spektrum an Migrationsfunktionen ab, einschließlich der Konvertierung von React-Property-Typen und Lifecycle-Methoden, der Normalisierung von Klassendefinitionen sowie der Möglichkeit, gezielt und inkrementell bestimmte Verzeichnisse durch musterbasierte Filterung zu bearbeiten.
Ships a system for transforming source code using tree-based logic or text replacements via plugins.
This project is an AST-based code optimizer and compressor for modern ECMAScript, JSX, and TypeScript source code. It functions as a JavaScript minifier that uses the Babel toolchain to reduce file size by removing unnecessary characters and whitespace while preserving program logic. The tool is distinguished by its ability to process experimental language proposals and transform modern syntax into browser-compatible versions. It provides specialized handling for React JSX transpilation and strips type annotations from TypeScript files to produce compressed production assets. The system cove
Implements a modular system using external plugins and presets to define custom rules for source code transformation.