Bowen Wang

Results 3 issues of Bowen Wang

There's a new feature [Terminal Sticky Scroll transparency](https://code.visualstudio.com/updates/v1_88#_terminal-sticky-scroll-transparency-support) which I hope this feature can use

## 问题说明 查看源码,定义了`SingleSheetWriteHandler`和`ManySheetWriteHandler`来进行相应导出操作,里面的`support`方法来判断使用哪一个类。由于数据长度为零,两次`support`调用都返回false,导致没有文件导出。 数据为空时不进行导出,不太符合一般的业务逻辑,这种情况下导出空的文件更符合预期。希望维护者能更新这一块的逻辑,或让用户通过参数自定义导出行为。 ## 临时解决方法 如果想临时修改这部分逻辑,可以实现自定义的`SingleSheetWriteHandler`,修改默认`support`实现。 代码示例 ```java @Component public class MySingleSheetWriteHandler extends SingleSheetWriteHandler { public MySingleSheetWriteHandler(ExcelConfigProperties configProperties, ObjectProvider) obj; if (objList.isEmpty()) { return true; } return !(objList.get(0) instanceof...

I use this library as one of my npm scripts. Any suggestions on how I can add timestamp to the zipped file.