adding version
This commit is contained in:
parent
ed80c24241
commit
3386c87c75
|
@ -63,6 +63,10 @@
|
||||||
#:program "whalesong"
|
#:program "whalesong"
|
||||||
#:argv (current-command-line-arguments)
|
#:argv (current-command-line-arguments)
|
||||||
"The Whalesong command-line tool for compiling Racket to JavaScript"
|
"The Whalesong command-line tool for compiling Racket to JavaScript"
|
||||||
|
["version" "Print the current version"
|
||||||
|
"Print the current version"
|
||||||
|
#:args ()
|
||||||
|
(print-version)]
|
||||||
["build" "build a standalone html and javascript package"
|
["build" "build a standalone html and javascript package"
|
||||||
"Builds a Racket program and its required dependencies into a .html and .js file."
|
"Builds a Racket program and its required dependencies into a .html and .js file."
|
||||||
#:once-each
|
#:once-each
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"resource/structs.rkt"
|
"resource/structs.rkt"
|
||||||
"logger.rkt"
|
"logger.rkt"
|
||||||
"parameters.rkt"
|
"parameters.rkt"
|
||||||
|
planet/version
|
||||||
(for-syntax racket/base))
|
(for-syntax racket/base))
|
||||||
|
|
||||||
(provide (all-defined-out))
|
(provide (all-defined-out))
|
||||||
|
@ -257,3 +258,7 @@
|
||||||
(make-MainModuleSource
|
(make-MainModuleSource
|
||||||
(normalize-path (build-path filename))))
|
(normalize-path (build-path filename))))
|
||||||
(current-output-port)))))
|
(current-output-port)))))
|
||||||
|
|
||||||
|
|
||||||
|
(define (print-version)
|
||||||
|
(printf "~a\n" (this-package-version)))
|
|
@ -2,7 +2,14 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
|
||||||
(require racket/runtime-path
|
(require racket/runtime-path
|
||||||
racket/path)
|
racket/path
|
||||||
|
planet/util)
|
||||||
|
|
||||||
|
;; We do things this way to ensure that we're using the latest
|
||||||
|
;; version of whalesong that's installed, and that the load-relative
|
||||||
|
;; path is in terms of the normalized paths, to avoid a very strange
|
||||||
|
;; low-level bug.
|
||||||
|
(define whalesong.cmd
|
||||||
|
(resolve-planet-path '(planet dyoo/whalesong/whalesong-cmd)))
|
||||||
|
|
||||||
(define-runtime-path whalesong.cmd "whalesong-cmd.rkt")
|
|
||||||
(dynamic-require (normalize-path whalesong.cmd) #f)
|
(dynamic-require (normalize-path whalesong.cmd) #f)
|
Loading…
Reference in New Issue
Block a user