Skip to content

Commit

Permalink
Split package
Browse files Browse the repository at this point in the history
  • Loading branch information
samdphillips committed Nov 26, 2023
1 parent 266a328 commit ef4e531
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
.\#*
.DS_Store
compiled/
/doc/
doc/
4 changes: 1 addition & 3 deletions info.rkt → raco-run-cmd/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
File renamed without changes.
11 changes: 11 additions & 0 deletions raco-run/info.rkt
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.

0 comments on commit ef4e531

Please sign in to comment.