adding a timestamp into the manifest to make it easier for web servers to detect when the files have changed.

This commit is contained in:
Danny Yoo 2011-09-26 14:01:48 -04:00
parent f7bcbff5ed
commit 0b50152aca

View File

@ -4,6 +4,7 @@
racket/file
racket/path
racket/port
racket/date
"make/make-structs.rkt"
"js-assembler/package.rkt"
"resource/structs.rkt"
@ -173,6 +174,7 @@
(call-with-output-file* (build-path (current-output-dir) output-manifest-filename)
(lambda (op)
(fprintf op "CACHE MANIFEST\n")
(fprintf op "## Timestamp: ~a\n" (date->string (current-date) #t))
(for [(js-name (map file-name-from-path (reverse written-js-paths)))]
(fprintf op "~a\n" js-name))
(for [(resource-name written-resources)]