From 953ff2a03e4cc327ddadb202ca258ae6fe8532e6 Mon Sep 17 00:00:00 2001 From: DeeDeeG Date: Tue, 5 Jul 2022 13:53:34 -0400 Subject: [PATCH] deps: Fix packageDependencies for find-and-replace Use the version number from the git tarball specified in dependencies. -- I'm pretty sure version specs in packageDependencies can only be version numbers or relative paths. URLs, such as tarball URLs or git URLs, aren't supported in packageDependencies. (Based on what apm does and doesn't support in its `install` command.) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 031d0ab9a..51af5a4af 100644 --- a/package.json +++ b/package.json @@ -204,7 +204,7 @@ "dev-live-reload": "file:./packages/dev-live-reload", "encoding-selector": "0.23.9", "exception-reporting": "file:./packages/exception-reporting", - "find-and-replace": "https://github.com/atom-community/find-and-replace/archive/refs/tags/v0.220.1.tar.gz", + "find-and-replace": "0.220.1", "fuzzy-finder": "1.14.3", "github": "0.36.10", "git-diff": "file:./packages/git-diff",