1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/std/node/_fs
Kitson Kelly 82aabb657a
feat: add --no-check option (#6456)
This commit adds a "--no-check" option to following subcommands:
- "deno cache"
- "deno info"
- "deno run"
- "deno test"

The "--no-check" options allows to skip type checking step and instead 
directly transpiles TS sources to JS sources. 

This solution uses `ts.transpileModule()` API and is just an interim
solution before implementing it fully in Rust.
2020-07-08 11:26:39 +02:00
..
promises feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
testdata refactor: move existing fs implementation to internal _fs directory (#4381) 2020-03-15 11:48:46 -04:00
_fs_access.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_appendFile.ts fix(std/node): fix readFile types, add encoding types (#6451) 2020-06-23 22:32:43 -04:00
_fs_appendFile_test.ts fix(std/node): fix readFile types, add encoding types (#6451) 2020-06-23 22:32:43 -04:00
_fs_chmod.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_chmod_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_chown.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_chown_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_close.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_close_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_common.ts feat(std/node): support hex/base64 encoding in fs.readFile/fs.writeFile (#6512) 2020-06-27 16:52:49 -04:00
_fs_constants.ts feat: add chmod Node polyfill and related file system constants (#4358) 2020-03-14 17:46:39 -04:00
_fs_copy.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_copy_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_dir.ts refactor(std): remove testing dependencies from non-test code (#5838) 2020-06-07 09:20:33 -04:00
_fs_dir_test.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_dirent.ts BREAKING: Include limited metadata in 'DirEntry' objects (#4941) 2020-04-29 16:00:31 -04:00
_fs_dirent_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_exists.ts [std/node] add the ability to path argument to be URL type (#5055) 2020-05-03 15:14:38 -04:00
_fs_exists_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_link.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_link_test.ts test(std/node): include windows in link tests (#6620) 2020-07-05 18:06:16 -04:00
_fs_mkdir.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
_fs_mkdir_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_readFile.ts fix(std/node): fix readFile types, add encoding types (#6451) 2020-06-23 22:32:43 -04:00
_fs_readFile_test.ts feat(std/node): support hex/base64 encoding in fs.readFile/fs.writeFile (#6512) 2020-06-27 16:52:49 -04:00
_fs_readlink.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_readlink_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_fs_writeFile.ts feat(std/node): support hex/base64 encoding in fs.readFile/fs.writeFile (#6512) 2020-06-27 16:52:49 -04:00
_fs_writeFile_test.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00