19 lines
606 B
Racket
19 lines
606 B
Racket
#lang info
|
|
|
|
(define collection "js-maker")
|
|
(define version "0.3")
|
|
(define license 'MIT)
|
|
(define pkg-desc "A small syntax-driven Racket-to-JavaScript maker macro.")
|
|
(define pkg-authors '(hnmdijkema))
|
|
|
|
(define deps '("base"))
|
|
(define build-deps '("scribble-lib" "racket-doc"))
|
|
|
|
(define scribblings
|
|
'(("scrbl/js-maker.scrbl" () (library))
|
|
("scrbl/usecases.scrbl" () (library))))
|
|
|
|
;; The public package test entry point. Support modules and demos are still
|
|
;; compiled by raco setup, but tests are launched through this maintained suite.
|
|
(define test-include-paths '("testing/jsmaker-regressions.rkt"))
|