Zoey Zhao

Results 8 comments of Zoey Zhao

Facing with the same. @pi0 , but I am not understand why shall migrate to mlly.parseStaticImports. Is it possible to just improve the regx pattern ```js output.contents = output.contents!.replace( /(import|export)(.*...

@pi0 Since we cannot find any other option for sourcemap support for now. So can we just simplely respect `esbuild sourceMap` option. #192

> @didavid61202 your solution create regex `^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[!@#$%\^&*])(?:[a-zA-Z]|(?:\d|[!@#$%\^&*])){8,}$` how to create more clear regex like `^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[!@#$%\^&*]).{8,}$` maybe ```js const regexp = createRegExp( exactly( exactly('') .before(char.times.any().and(letter.lowercase)) .before(char.times.any().and(letter.uppercase)) .before(char.times.any().and(digit)) .before(char.times.any().and(charIn('!@#$%^&*'))), char .times.atLeast(8), )...

It happened to be an [recast](https://github.com/benjamn/recast)'s inline behavior since > Whenever Recast cannot reprint a modified node using the original source code, it falls back to using a generic pretty...

Both `mod.import` and `mod.exports` are proxied, If you want to check the output, you would need to wrap it like ```js console.log(JSON.stringify(mod.imports, null, 2)) ```` But you would still see...

This is not kind of repeat. The `repeat` you called is just the same global styles inherited from its parent and its acestors, and it is expected to be overrided...

@alexzhang1030 , it is due to `@rollup/plugin-json` try to make identitier legal through ```js const makeLegalIdentifier = function makeLegalIdentifier(str) { let identifier = str .replace(/-(\w)/g, (_, letter) => letter.toUpperCase()) .replace(/[^$_a-zA-Z0-9]/g,...

Also install the `aws-lambda` itself in the dependencies can correct the output.