Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-16 | Merge pull request #2664 from emmericp/faster-checks | 最萌小汐 | |
Disable await.delay() when running --check | |||
2024-05-13 | Disable await.delay() when running --check | Paul Emmerich | |
This makes --check about 25% faster. | |||
2024-05-13 | 优化性能 | 最萌小汐 | |
2024-05-11 | Revert "没必要sleep" | 最萌小汐 | |
This reverts commit 739449db06a48ba511b0044934f98e9bfe40e30d. | |||
2024-05-11 | 没必要sleep | 最萌小汐 | |
2024-05-11 | 整理代码 | 最萌小汐 | |
2024-05-11 | 支持根据参数类型选择函数定义 | 最萌小汐 | |
2024-05-11 | 支持转到实现 | 最萌小汐 | |
2024-05-11 | 暂存-转到实现 | 最萌小汐 | |
2024-05-10 | 漏了一处 | 最萌小汐 | |
2024-05-10 | 跟进修改 | 最萌小汐 | |
2024-05-10 | 适配 bee.sys | 最萌小汐 | |
2024-05-10 | 添加一些参数定义 | 最萌小汐 | |
2024-05-10 | fix: convert ENV value to bool | carsakiller | |
2024-05-10 | add: load ENV variables as args | carsakiller | |
2024-05-09 | Merge pull request #2629 from comedinha/master | 最萌小汐 | |
Add setting to find globals using regex | |||
2024-05-09 | Merge pull request #2638 from emmericp/multi-threaded-check | 最萌小汐 | |
Add multi-process support to --check. | |||
2024-05-08 | update bee | actboy168 | |
2024-05-07 | update bee | actboy168 | |
2024-04-27 | Add multi-process support to --check. | Paul Emmerich | |
Set the parameter --num_threads to the desired number of worker tasks to potentially speed up --check. This works by spawning multiple sub-proccesses that each run the desired diagnostics on a subset of the workspace. Each process will still load and compile the entire workspace, so there are diminishing returns and memory usage increases linearly with the number of threads. Overall this can reduce the runtime by about ~50% for my projects, example results: Workspace 1, dominated by a few large/complex files 1 thread: 49.7 seconds 2 threads: 31.8 seconds 4 threads: 23.6 seconds 8 threads: 24.4 seconds Workspace 2, large number of small-ish files 1 thread: 96.0 seconds 2 threads: 76.5 seconds 4 threads: 49.5 seconds 8 threads: 38.1 seconds | |||
2024-04-23 | Add globalsRegex to diagnostics | Bruno Carvalho | |
Improve checkIsUndefinedGlobal to avoid unecessary checks and tables | |||
2024-04-22 | Merge pull request #2622 from emmericp/check-output | 最萌小汐 | |
Output more details while running --check | |||
2024-04-20 | --check: Attempt to write output even if an error occurs | Paul Emmerich | |
This enables writing partial output if you press ctrl-c after seeing the first errors show up. | |||
2024-04-20 | Output more details while running --check | Paul Emmerich | |
2024-04-20 | Run diagnostics on unopened files when explicitly requested by the user | Paul Emmerich | |
If I explicitly click on "Diagnose workspace" I would expect it to show me *all* the diagnostics similar to how --check in a CI would check my project. This makes it easier for users to check their whole workspace after making changes to some library or core function that potentially affects a large number of files that are usually only checked once opened. | |||
2024-04-19 | socket连接把错误打印到日志中 | 最萌小汐 | |
2024-04-18 | fixes bug | actboy168 | |
2024-04-18 | 和客户端连接模式的日志 | 最萌小汐 | |
2024-04-18 | `merge` 改叫 `partial` | 最萌小汐 | |
2024-04-18 | 每个线程只进行一次update | 最萌小汐 | |
2024-04-18 | 补充测试和更新说明 | 最萌小汐 | |
2024-04-18 | alias (merge) 的语义着色 | 最萌小汐 | |
2024-04-18 | 如果有 merge 属性,则跳过 `duplicate-doc-alias` 检查 | 最萌小汐 | |
2024-04-18 | 支持多个enum合并 | 最萌小汐 | |
2024-04-18 | 兼容新的bee.net | 最萌小汐 | |
2024-04-18 | 更新 bee.net | 最萌小汐 | |
2024-04-17 | 修正内部警告 | 最萌小汐 | |
2024-04-17 | 修正 `discard-returns` 对条件的误报 | 最萌小汐 | |
2024-04-17 | 修复测试 | 最萌小汐 | |
2024-04-17 | thread.sleep 改成毫秒 | 最萌小汐 | |
2024-04-16 | Merge pull request #2585 from clay-golem/fix/discard-returns-trigger | 最萌小汐 | |
Detect discard-returns in all block types | |||
2024-04-16 | Merge pull request #2574 from Luke100000/patch-1 | 最萌小汐 | |
Update compiler.lua | |||
2024-03-30 | Allow plugins to resolve require paths | Artem Dzhemesiuk | |
2024-03-25 | Detect discard-returns in all block types | Jakub | |
2024-03-18 | Update compiler.lua | Luke100000 | |
2024-03-18 | Merge branch 'master' into generic-pattern1 | fesily | |
2024-03-15 | Merge pull request #2562 from AndreasMatthias/doc-update | 最萌小汐 | |
Update `doc.json` | |||
2024-03-15 | fix error in filewatch | 最萌小汐 | |
2024-03-08 | Merge branch 'master' into doc-update | Andreas | |
2024-03-05 | Merge pull request #2547 from emmericp/patch-1 | 最萌小汐 | |
Flush stdout in check progress indicator |