Skip to content

Commit

Permalink
Fix empty paths error when building with Dub.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-carlborg committed Dec 10, 2013
1 parent a23c34a commit 970d6b7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions package.json
Expand Up @@ -12,7 +12,7 @@
"other original Tango authors"
],

"sourcePaths": ["tango/core", "tango/io", "tango/math", "tango/net",
"sourcePaths": ["tango/core", "tango/io", "tango/math", "tango/net",
"tango/stdc", "tango/text", "tango/time", "tango/util"],
"sourcePaths-windows": ["tango/sys/win32"],
"sourcePaths-linux": ["tango/sys/linux"],
Expand All @@ -25,7 +25,13 @@
"versions-osx" : ["osx", "darwin"],
"versions-freebsd" : ["freebsd"],

"importPaths": [""],
"importPaths": ["tango/core", "tango/io", "tango/math", "tango/net",
"tango/stdc", "tango/text", "tango/time", "tango/util"],
"importPaths-windows": ["tango/sys/win32"],
"importPaths-linux": ["tango/sys/linux"],
"importPaths-freebsd": ["tango/sys/freebsd"],
"importPaths-solaris": ["tango/sys/solaris"],
"importPaths-osx": ["tango/sys/darwin"],

"configurations": [
{
Expand Down

0 comments on commit 970d6b7

Please sign in to comment.