Files
wwjcloud-nest-v1/wwjcloud-nest-v1/tools
wanwu bad1b60aa4 fix: 转换器后处理优化
 新增 postProcessCleanup 方法:
- 修复 this.fs. 和 this.path. → fs. 和 path.
- 修复逻辑运算符优先级
  - !this.config.get('x') === 'y' → this.config.get('x') !== 'y'

 配置访问优化:
- WebAppEnvs.get().property.exists() → fs.existsSync(this.config.get('property'))
- GlobalConfig.property.exists() → fs.existsSync(this.config.get('property'))

🎯 效果:
- 减少语法错误
- 修复常见转换问题
2025-10-29 13:55:43 +08:00
..