-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
should - close #85 ## description ### before ``` pkgs/nu-git-manager/ |-- nu-git-manager | |-- completions | | `-- nu-complete.nu | |-- error | | `-- error.nu | |-- fs | | |-- cache.nu | | |-- dir.nu | | |-- path.nu | | `-- store.nu | |-- git | | |-- repo.nu | | `-- url.nu | `-- mod.nu |-- nupm.nuon `-- tests |-- gm.nu `-- mod.nu ``` ``` pkgs/nu-git-manager-sugar/ |-- nu-git-manager-sugar | |-- completions | | `-- nu-complete.nu | |-- extra.nu | |-- git | | |-- lib | | | |-- lib.nu | | | |-- prompt.nu | | | `-- style.nu | | |-- mod.nu | | `-- prompt.nu | |-- github.nu | `-- mod.nu |-- nupm.nuon `-- tests |-- git.nu `-- mod.nu ``` ### after > **Important** > caveats: > - `[1]`: has `use path.nu ...` instead of `use path` > - `[2]`: has `use style.nu ...` instead of `use style` ``` pkgs/nu-git-manager/ |-- nu-git-manager | |-- completions.nu # internal | |-- error.nu # internal | |-- fs # internal | | |-- cache.nu [1] | | |-- dir.nu [1] | | |-- mod.nu | | |-- path.nu | | `-- store.nu [1] | |-- git # internal | | |-- mod.nu | | |-- repo.nu | | `-- url.nu | `-- mod.nu |-- nupm.nuon `-- tests |-- gm.nu `-- mod.nu ``` ``` pkgs/nu-git-manager-sugar/ |-- nu-git-manager-sugar | |-- completions.nu # internal | |-- extra.nu # public | |-- git # public | | |-- lib # internal | | | |-- git.nu [2]# public | | | |-- mod.nu | | | |-- prompt.nu # public | | | `-- style.nu [2]# public | | |-- mod.nu | | `-- prompt.nu # public | |-- github.nu # public | `-- mod.nu |-- nupm.nuon `-- tests |-- git.nu `-- mod.nu ``` ## TODO - [x] `nu-git-manager-sugar/git/lib` issue with `prompt.nu` in 77596ff
- Loading branch information
Showing
19 changed files
with
49 additions
and
33 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
pkgs/nu-git-manager-sugar/nu-git-manager-sugar/git/lib/mod.nu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export module git.nu | ||
export module prompt.nu | ||
export module style.nu |
4 changes: 2 additions & 2 deletions
4
pkgs/nu-git-manager-sugar/nu-git-manager-sugar/git/lib/prompt.nu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
module completions.nu | ||
export module extra.nu | ||
export module git | ||
export module git/ | ||
export module github.nu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export module cache.nu | ||
export module dir.nu | ||
export module path.nu | ||
export module store.nu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export module repo.nu | ||
export module url.nu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use ../fs/path.nu "path sanitize" | ||
use ../fs path "path sanitize" | ||
|
||
# parse the URL of a Git repo | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters