File: d3.nimble

package info (click to toggle)
nim-d3 0.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 288 kB
  • sloc: makefile: 17
file content (20 lines) | stat: -rw-r--r-- 391 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Package

version       = "0.1.3"
author        = "Hitesh Jasani"
description   = "Nim bindings to D3js"
license       = "MIT"
srcDir        = "src"

backend       = "js"

# Dependencies

requires "nim >= 0.20.0"

# Tasks

task docs, "Build documentation":
  mkDir("docs/d3")
  exec "nim doc --project --index:on --outdir:docs src/d3.nim"
  exec "nim buildIndex -o:docs/theindex.html docs"