summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-10-26 14:14:50 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-10-26 13:07:33 -0700
commit6bbf0777b1d0f2b1b85cc9588da7e95e8f34c8d3 (patch)
tree78f9a1d707cba5c25870339ee137c9e40e9f9881 /js
parenta99aaf5def7d2e223f8303e7a00bd9de4d3efdf6 (diff)
Remove broken feature: --deps
Diffstat (limited to 'js')
-rw-r--r--js/main.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/js/main.ts b/js/main.ts
index 892a65044..50de2c26c 100644
--- a/js/main.ts
+++ b/js/main.ts
@@ -84,14 +84,6 @@ export default function denoMain() {
os.exit(1);
}
- // handle `--deps`
- if (startResMsg.depsFlag()) {
- for (const dep of compiler.getModuleDependencies(inputFn, `${cwd}/`)) {
- console.log(dep);
- }
- os.exit(0);
- }
-
compiler.recompile = startResMsg.recompileFlag();
compiler.run(inputFn, `${cwd}/`);
}