-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathinfo.rkt
More file actions
32 lines (26 loc) · 888 Bytes
/
info.rkt
File metadata and controls
32 lines (26 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#lang info
(define collection 'multi)
(define version "0.1")
(define deps
'("base"
["racket" "6.4"]
"typed-racket-lib"
"typed-racket-more"
"threading"
"graph-lib"
"anaphoric"))
(define build-deps '("base"
"typed-racket-lib"
"typed-racket-more"
"rackunit-lib"))
(define pkg-authors '(vishesh))
(define pkg-desc "Racket to JavaScript compiler")
(define post-install-collection "")
;; Test configuration
(define test-omit-paths '("racketscript/browser.rkt"
"racketscript/compiler/runtime/"))
;; Coverage
(define cover-omit-paths '("racketscript/browser.rkt"
"racketscript/compiler/runtime/kernel.rkt"
"racketscript/compiler/runtime/paramz.rkt"
"racketscript/compiler/runtime/unsafe.rkt"))