Skip to content

Commit df5dd7e

Browse files
committed
Merge branch 'master' of github.com:jashkenas/coffeescript into 1.12.1
2 parents a80d74a + 8fbe095 commit df5dd7e

27 files changed

+620
-99
lines changed

Cakefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ task 'build:browser', 'rebuild the merged script for inclusion in the browser',
129129

130130
task 'doc:site', 'watch and continually rebuild the documentation for the website', ->
131131
# Helpers
132+
css = fs.readFileSync('./documentation/css/docs.css', 'utf-8') + '\n' +
133+
fs.readFileSync('./documentation/css/tomorrow.css', 'utf-8')
134+
135+
logo = fs.readFileSync './documentation/images/logo.svg', 'utf-8'
136+
132137
codeFor = ->
133138
counter = 0
134139
hljs = require 'highlight.js'
@@ -218,6 +223,8 @@ task 'doc:site', 'watch and continually rebuild the documentation for the websit
218223
do renderIndex = ->
219224
render = _.template fs.readFileSync(indexFile, 'utf-8')
220225
output = render
226+
css: css
227+
logo: logo
221228
codeFor: codeFor()
222229
releaseHeader: releaseHeader
223230
majorVersion: majorVersion

docs/android-chrome-192x192.png

7.8 KB
Loading

docs/android-chrome-512x512.png

23.6 KB
Loading

docs/apple-touch-icon.png

4.33 KB
Loading

docs/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#da532c</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

docs/favicon-16x16.png

987 Bytes
Loading

docs/favicon-32x32.png

1.59 KB
Loading

docs/favicon.ico

14.7 KB
Binary file not shown.

docs/manifest.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "",
3+
"icons": [
4+
{
5+
"src": "\/android-chrome-192x192.png",
6+
"sizes": "192x192",
7+
"type": "image\/png"
8+
},
9+
{
10+
"src": "\/android-chrome-512x512.png",
11+
"sizes": "512x512",
12+
"type": "image\/png"
13+
}
14+
],
15+
"theme_color": "#ffffff",
16+
"display": "standalone"
17+
}

docs/mstile-150x150.png

4.31 KB
Loading

0 commit comments

Comments
 (0)