racket/collects/setup/private/cc-struct.rkt
Matthew Flatt 70caf5f509 raco pkg create, raco setup: add support for built (source+binary) packages
This change removes `rendered-scribblings' as a recognized "info.rkt"
definition (which was added for binary packages, but now `scribblings'
serves both roles).

The `raco setup' changes involve support for moving pre-rendered
documentation into place (where "moving" may actually mean
leaving it in place but updating the "local-redirect.js" path),
but also allowing documentation to be re-rendered.
2013-05-24 14:55:39 -06:00

8 lines
190 B
Racket

#lang racket/base
(provide (struct-out cc))
(define-struct cc
(collection path name info parent-cc omit-root info-root info-path info-path-mode shadowing-policy main?)
#:inspector #f)