Alles aangepast.

This commit is contained in:
2026-06-08 12:55:08 +02:00
parent a9610e6e0c
commit 823130e3ac
24 changed files with 418 additions and 2621 deletions
+10 -6
View File
@@ -3,15 +3,19 @@
(define collection "js-maker")
(define version "0.3")
(define license 'MIT)
(define pkg-desc "Small syntax-driven Racket-to-JavaScript maker macro.")
(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/js-maker.scrbl" () (library))
("scrbl/usecases.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"))
;; 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"))