mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 22:10:33 +00:00
jsre: try to fix nightlies (#15057)
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
## Regular Expressions for the JavaScript target.
|
||||
## * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
|
||||
|
||||
when not defined(js) and not defined(Nimdoc):
|
||||
{.error: "This module only works on the JavaScript platform".}
|
||||
|
||||
type RegExp* {.importjs.} = object ## Regular Expressions for JavaScript target.
|
||||
flags* {.importjs.}: cstring ## cstring that contains the flags of the RegExp object.
|
||||
dotAll* {.importjs.}: bool ## Whether `.` matches newlines or not.
|
||||
|
||||
@@ -160,6 +160,7 @@ lib/posix/posix_linux_amd64_consts.nim
|
||||
lib/posix/posix_other_consts.nim
|
||||
lib/posix/posix_openbsd_amd64.nim
|
||||
lib/posix/posix_haiku.nim
|
||||
lib/js/jsre.nim
|
||||
""".splitWhitespace()
|
||||
|
||||
when (NimMajor, NimMinor) < (1, 1) or not declared(isRelativeTo):
|
||||
@@ -258,7 +259,7 @@ proc buildDoc(nimArgs, destPath: string) =
|
||||
destPath / changeFileExt(splitFile(d).name, "html"), d]
|
||||
i.inc
|
||||
for d in items(doc):
|
||||
let extra = if isJsOnly(d): " --backend:js " else: ""
|
||||
let extra = if isJsOnly(d): "--backend:js" else: ""
|
||||
var nimArgs2 = nimArgs
|
||||
if d.isRelativeTo("compiler"): doAssert false
|
||||
commands[i] = nim & " doc $# $# --git.url:$# --outdir:$# --index:on $#" %
|
||||
|
||||
Reference in New Issue
Block a user