diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-04 13:03:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 13:03:30 +0200 |
commit | a913b7a1ba67849464d0314eee9851f59c22556b (patch) | |
tree | 0e394ce772dacda117acf541339f13e62a997b19 /test_plugin/tests/integration_tests.rs | |
parent | bd3b9cc7d97700ee627a621f561eda4c20dbd5f3 (diff) |
BREAKING: remove CLI 'deno script.ts' hack (#5026)
This PR removes the hack in CLI that allows to run scripts with shorthand: deno script.ts.
Removing this functionality because it hacks around short-comings of clap our CLI parser. We agree that this shorthand syntax is desirable, but it needs to be rethinked and reimplemented. For 1.0 we should go with conservative approach that is correct.
Diffstat (limited to 'test_plugin/tests/integration_tests.rs')
-rw-r--r-- | test_plugin/tests/integration_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs index 1f118b77a..2f61ec9aa 100644 --- a/test_plugin/tests/integration_tests.rs +++ b/test_plugin/tests/integration_tests.rs @@ -30,6 +30,7 @@ fn basic() { let build_plugin_output = build_plugin.output().unwrap(); assert!(build_plugin_output.status.success()); let output = deno_cmd() + .arg("run") .arg("--allow-plugin") .arg("--unstable") .arg("tests/test.js") |