CodeKit + timestamps
[UPDATE] CodeKit 3 is now available and hooks work a bit differently now. This “should” still work, but, I’ll try to have an update on this using the new hooks.
Here is another quick post on using the new Hook variables added in CodeKit 2.3, this time looking at adding timestamps to CSS files.
Even though this is focused on SCSS/CSS you should be able to take this example and modify it to work with any of the other preprocessing abilities CodeKit has to offer. The main take away is, adding a unique placeholder for the timestamp in your source files and using sed to replace it with a real timestamp when they’re processed by CodeKit.
The hook settings used are:
Any
of the following are trueThe filename of any processed file
ends with
.scss
Then, we’ll need to select Shell Script (/bin/sh)
from the select box.
Once that’s all set add the following to the textarea:
1 |
|
We’re creating the timestamp with now=$(date)
so if you wish to tweak the timestamp format you can find more information here.
The line sed -i -e "s/{{TIMESTAMP}}/${now}/" "$i"
is using sed to execute a find/replace inline so that we overwrite the current file $i
with the timestamp we created above. Right now the script is expecting to find {{TIMESTAMP}}
somewhere within the CSS file so that it can replace it.
So your SCSS file could look something like:
1 |
|
and you will end up with a CSS file like:
1 |
|