From 2dfc0aca7c6a04d54fe6f9a73be70fc4c591d552 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 7 Mar 2024 20:16:32 -0500 Subject: fix(publish): make include and exclude work (#22720) 1. Stops `deno publish` using some custom include/exclude behaviour from other sub commands 2. Takes ancestor directories into account when resolving gitignore 3. Backards compatible change that adds ability to unexclude an exclude by using a negated glob at a more specific level for all sub commands (see https://github.com/denoland/deno_config/pull/44). --- tests/integration/lsp_tests.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/integration/lsp_tests.rs') diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index 8165cc86a..a7193ff59 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -1652,11 +1652,9 @@ fn lsp_workspace_disable_enable_paths() { .unwrap() }, name: "project".to_string(), - }]) - .set_deno_enable(false); + }]); }, json!({ "deno": { - "enable": false, "disablePaths": ["./worker/node.ts"], "enablePaths": ["./worker"], } }), -- cgit v1.2.3