Skip to content

Commit 9abe158

Browse files
authored
Move vendored code into src, fix version (#126)
* move vendored source code into src * rm extra files * up * fix version * rm stray files
1 parent 6334d68 commit 9abe158

27 files changed

+12
-7
lines changed

.gitattributes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
vendor/*/** linguist-vendored
1+
src/vendored linguist-vendored
22
# mark as generated so they are minimized in diffs by default
3-
vendor/*/** linguist-generated
3+
src/vendored linguist-generated

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ExplicitImports"
22
uuid = "7d51a73a-1435-4ff3-83d9-f097790105c7"
33
authors = ["Eric P. Hanson"]
4-
version = "1.12.1"
4+
version = "1.13"
55

66
[deps]
77
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"

src/ExplicitImports.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ module ExplicitImports
55
# these as we don't want it to recurse into vendored dependencies.
66
# We also add `Vendored` to `ignore_submodules` elsewhere.
77
module Vendored
8-
include(joinpath("..", "vendor", "JuliaSyntax", "src", "JuliaSyntax.jl"))
9-
include(joinpath("..", "vendor", "AbstractTrees", "src", "AbstractTrees.jl"))
8+
include(joinpath("vendored", "JuliaSyntax", "src", "JuliaSyntax.jl"))
9+
include(joinpath("vendored", "AbstractTrees", "src", "AbstractTrees.jl"))
1010
end
1111
#! explicit-imports: on
1212

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)