22 lines
750 B
Racket
22 lines
750 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" "rackunit-lib"))
|
|
(define tags '("javascript" "macro" "racket"))
|
|
|
|
(define scribblings
|
|
'(("scrbl/js-maker.scrbl" () (library))
|
|
("scrbl/usecases.scrbl" () (library))))
|
|
|
|
;; Keep the test entry point explicit. The supporting regression modules are
|
|
;; required by this runner and compile during package setup.
|
|
(define test-include-paths '("testing/jsmaker-regressions.rkt"))
|
|
(define test-omit-paths
|
|
'("testing/jsmaker-executors.rkt"
|
|
"testing/jsmaker-test-framework.rkt"))
|