Skip to content

Commit 67e0046

Browse files
committed
update
1 parent c3dac5f commit 67e0046

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
***
66

7-
### [v3.6.0]
7+
### [v3.6.1]
88

99
**Fixed**:
1010
- When there are too many nested folders, the response is slow when excluding directories.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"homepage": "https://github.com/github0null/eide/blob/master/README.md",
3333
"license": "MIT",
3434
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/RISC-V",
35-
"version": "3.6.0",
35+
"version": "3.6.1",
3636
"preview": false,
3737
"engines": {
3838
"vscode": "^1.63.0"

src/EIDEProject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2048,7 +2048,7 @@ class EIDEProject extends AbstractProject {
20482048

20492049
// filesystem files
20502050
if (typeof this.srcExtraCompilerConfig?.files == 'object') {
2051-
matcher(this.srcExtraCompilerConfig?.files, srcPath);
2051+
matcher(this.srcExtraCompilerConfig?.files, this.ToRelativePath(srcPath, false) || srcPath);
20522052
}
20532053

20542054
// virtual files

0 commit comments

Comments
 (0)