18 lines
584 B
Racket
18 lines
584 B
Racket
#lang info
|
|
|
|
(define collection "js-maker")
|
|
(define version "0.3")
|
|
(define license 'MIT)
|
|
(define pkg-desc "Small syntax-driven Racket-to-JavaScript maker macro.")
|
|
(define pkg-authors '(hnmdijkema))
|
|
(define deps '("base"))
|
|
(define build-deps '("scribble-lib" "racket-doc" "rackunit-lib"))
|
|
|
|
(define scribblings
|
|
'(("scrbl/js-maker.scrbl" () (library))))
|
|
|
|
;; js-maker 3 is a clean restart. The old demo/testing tree from the larger
|
|
;; branch is intentionally not shipped. The maintained package test suite is
|
|
;; this compact smoke test.
|
|
(define test-include-paths '("smoke-test.rkt"))
|