We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6e5c95 commit 9d88524Copy full SHA for 9d88524
docopt.nimble
@@ -1,9 +1,13 @@
1
-[Package]
2
-name: "docopt"
3
-version: "0.6.5"
4
-author: "Oleh Prypin"
5
-description: "Command line option parser that will make you smile"
6
-license: "MIT"
7
-srcDir: "src"
8
-[Deps]
9
-requires: "nim >= 0.15.0"
+# Package
+version = "0.6.5"
+author = "Oleh Prypin"
+description = "Command line option parser that will make you smile"
+license = "MIT"
+srcDir = "src"
+skipDirs = @["private"]
+
+requires "nim >= 0.15.0"
10
11
+task test, "Test":
12
+ exec "nim compile --verbosity:0 --run test/test"
13
+ exec "for f in examples/*.nim; do nim compile --verbosity:0 --hints:off \"$f\" || exit; done"
0 commit comments