diff options
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index 80cc0c1c9..9567d27b6 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -185,6 +185,10 @@ void PassRegistry::registerPasses() { "minifies both import and export names, and emits a mapping to " "the minified ones", createMinifyImportsAndExportsPass); + registerPass("minify-imports-and-exports-and-modules", + "minifies both import and export names, and emits a mapping to " + "the minified ones, and minifies the modules as well", + createMinifyImportsAndExportsAndModulesPass); registerPass("mod-asyncify-always-and-only-unwind", "apply the assumption that asyncify imports always unwind, " "and we never rewind", |