summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--readme.md1
-rw-r--r--tools/kochdocs.nim2
-rw-r--r--tools/nimblepkglist.nim (renamed from web/nimblepkglist.nim)0
-rw-r--r--tools/nimweb.nim5
4 files changed, 1 insertions, 7 deletions
diff --git a/readme.md b/readme.md
index 7b81d0790..c333611e2 100644
--- a/readme.md
+++ b/readme.md
@@ -131,7 +131,6 @@ you should familiarize yourself with the following repository structure:
 * ``tests/`` - contains categorized tests for the compiler and standard library.
 * ``tools/`` - the tools including ``niminst`` and ``nimweb`` (mostly invoked via
   ``koch``).
-* ``web/`` - [the Nim website][nim-site].
 * ``koch.nim`` - tool used to bootstrap Nim, generate C sources, build the website,
   and generate the documentation.
 
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim
index 1eceadba4..c3b52dddf 100644
--- a/tools/kochdocs.nim
+++ b/tools/kochdocs.nim
@@ -323,7 +323,7 @@ proc buildPdfDoc*(nimArgs, destPath: string) =
       removeFile(changeFileExt(d, "tex"))
 
 proc buildJS() =
-  exec(findNim() & " js -d:release --out:$1 web/nimblepkglist.nim" %
+  exec(findNim() & " js -d:release --out:$1 tools/nimblepkglist.nim" %
       [webUploadOutput / "nimblepkglist.js"])
   exec(findNim() & " js " & (docHackDir / "dochack.nim"))
 
diff --git a/web/nimblepkglist.nim b/tools/nimblepkglist.nim
index 870944ab0..870944ab0 100644
--- a/web/nimblepkglist.nim
+++ b/tools/nimblepkglist.nim
diff --git a/tools/nimweb.nim b/tools/nimweb.nim
index 61cae5170..b7fee220a 100644
--- a/tools/nimweb.nim
+++ b/tools/nimweb.nim
@@ -445,10 +445,6 @@ proc buildNewsRss(c: var TConfigData, destPath: string) =
 
   generateRss(destFilename, parseNewsTitles(srcFilename))
 
-proc buildJS(c: TConfigData) =
-  exec(findNim(c) & " js -d:release --out:$1 web/nimblepkglist.nim" %
-      [c.webUploadOutput / "nimblepkglist.js"])
-
 proc readSponsors(sponsorsFile: string): seq[Sponsor] =
   result = @[]
   var fileStream = newFileStream(sponsorsFile, fmRead)
@@ -528,7 +524,6 @@ proc onlyDocs(c: var TConfigData) =
 
 proc main(c: var TConfigData) =
   buildWebsite(c)
-  buildJS(c)
   let docup = c.webUploadOutput / NimVersion
   createDir(docup)
   buildAddDoc(c, docup)