Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-20 | refactor: move code from fs.rs into ops/fs.rs (#4428) | dubiousjim | |
This a complex boring PR that shifts around code (primarily) in cli/fs.rs and cli/ops/fs.rs. The gain of this refactoring is to ease the way for #4188 and #4017, and also to avoid some future development pain. Mostly there is no change in functionality. Except: * squashed bugs where op_utime and op_chown weren't using `resolve_from_cwd` * eliminated the use of the external `remove_dir_all` crate. * op_chmod now only queries metadata to verify file/dir exists on Windows (it will already fail on Unix if it doesn't) * op_chown now verifies the file/dir's existence on Windows like chmod does. | |||
2020-03-20 | Add require-await lint rule (#4401) | Samrith Shankar | |
2020-03-16 | Add mode option to open/create (#4289) | dubiousjim | |
2020-03-16 | refactor: add no-return-await lint rule (#4384) | Bartek Iwańczuk | |
2020-03-14 | BREAKING CHANGE FileInfo.len renamed to FileName.size (#4338) | dubiousjim | |
2020-03-13 | Remove doc strings from cli/js TS files (#4329) | crowlKats | |
Co-authored-by: Ryan Dahl <ry@tinyclouds.org> | |||
2020-03-11 | support permission mode in mkdir (#4286) | dubiousjim | |
2020-03-10 | Add Deno.umask (#4290) | dubiousjim | |
2020-03-10 | reorg: move JS ops implementations to cli/js/ops/, part 3 (#4302) | Bartek Iwańczuk | |
Following JS ops were moved to separate files in cli/js/ops directory: - net - tls - fs |