diff options
author | Ivan Yonchovski <yyoncho@users.noreply.github.com> | 2023-06-18 17:06:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-18 16:06:14 +0200 |
commit | 2bb7277a616b2ddbcc10a0e2eb1940f6b0b401cb (patch) | |
tree | e1a73a53955ef087dc706bdf0d473048446bdb61 /.gitignore | |
parent | 6d2163724550ed3a115d22e00f9d40150534a8b9 (diff) | |
download | Nim-2bb7277a616b2ddbcc10a0e2eb1940f6b0b401cb.tar.gz |
Create compiler and nimsuggest packages (#22118)
I have tested it locally with the following in my local packages_official.json ``` { "name": "compiler", "url": "https://github.com/yyoncho/Nim.git/?subdir=compiler", "method": "git", "tags": [ "library", "compiler" ], "description": "Package providing the Nim compiler binaries plus all its source files that can be used as a library", "license": "MIT", "web": "https://github.com/nim-lang/Nim" }, { "name": "nimsuggest", "url": "https://github.com/yyoncho/Nim.git/?nimsuggest=compiler", "method": "git", "tags": [ "library", "compiler" ], "description": "Package providing the Nim compiler binaries plus all its source files that can be used as a library", "license": "MIT", "web": "https://github.com/nim-lang/Nim" }, ``` Then `nimble install compiler`, `nimble install nimsuggest` work as expected.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 89c67024e..fad7909bd 100644 --- a/.gitignore +++ b/.gitignore @@ -111,3 +111,4 @@ nimdoc.out.css # except here: !/nimdoc/testproject/expected/* pkgs/ +/compiler/compiler/ |