-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
266a328
commit ef4e531
Showing
5 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
.\#* | ||
.DS_Store | ||
compiled/ | ||
/doc/ | ||
doc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,8 @@ | |
|
||
(define collection "raco-run") | ||
(define deps '("base")) | ||
(define build-deps '("scribble-lib" "racket-doc" "rackunit-lib")) | ||
(define scribblings '(("scribblings/raco-run.scrbl" ()))) | ||
(define pkg-desc "Run submodules directly") | ||
(define version "0.3") | ||
(define version "1.0") | ||
(define pkg-authors '([email protected])) | ||
(define license 'Apache-2.0) | ||
(define raco-commands | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#lang info | ||
|
||
(define collection "raco-run") | ||
(define deps '("base" "raco-run-cmd")) | ||
(define build-deps '("scribble-lib" "racket-doc")) | ||
(define implies '("raco-run-cmd")) | ||
(define scribblings '(("scribblings/raco-run.scrbl" ()))) | ||
(define pkg-desc "Run submodules directly") | ||
(define version "1.0") | ||
(define pkg-authors '([email protected])) | ||
(define license 'Apache-2.0) |
File renamed without changes.