
Fix #131: - Raise a syntax error when bogus mode arguments are given. - Fix a bug where `extend-final` and `augment-final` are not recognized - Document the `public` mode which was already supported but not documented. - Clarify the default mode when `maybe-mode` is not given.
27 lines
653 B
Racket
27 lines
653 B
Racket
#lang info
|
|
|
|
(define collection 'multi)
|
|
|
|
(define deps '("scheme-lib"
|
|
"base"
|
|
"compatibility-lib"
|
|
"scribble-text-lib"
|
|
"scribble-html-lib"
|
|
"planet-lib" ; used dynamically
|
|
"net-lib"
|
|
"at-exp-lib"
|
|
"draw-lib"
|
|
"syntax-color-lib"
|
|
"sandbox-lib"
|
|
"typed-racket-lib"
|
|
))
|
|
(define build-deps '("rackunit-lib"))
|
|
|
|
(define implies '("scribble-html-lib"))
|
|
|
|
(define pkg-desc "implementation (no documentation) part of \"scribble\"")
|
|
|
|
(define pkg-authors '(mflatt eli))
|
|
|
|
(define version "1.35")
|