File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 21
21
#### :bug : Bug fix
22
22
23
23
- Fix formatting of nested records in ` .resi ` files. https://github.com/rescript-lang/rescript/pull/7741
24
+ - Don't format and don't check formatting of dependencies. https://github.com/rescript-lang/rescript/pull/7748
24
25
25
26
#### :memo : Documentation
26
27
Original file line number Diff line number Diff line change @@ -42,7 +42,9 @@ fn get_all_files() -> Result<Vec<String>> {
42
42
let mut files: Vec < String > = Vec :: new ( ) ;
43
43
44
44
for ( _package_name, package) in build_state {
45
- if let Some ( source_files) = package. source_files {
45
+ if package. is_local_dep
46
+ && let Some ( source_files) = package. source_files
47
+ {
46
48
for ( path, _metadata) in source_files {
47
49
if let Some ( extension) = path. extension ( ) {
48
50
if extension == "res" || extension == "resi" {
You can’t perform that action at this time.
0 commit comments