Added docs to GH Pages
parent
174cabdc74
commit
dba0b104ab
30
Gruntfile.js
30
Gruntfile.js
|
@ -111,7 +111,7 @@ module.exports = function (grunt) {
|
||||||
prod: ["build/prod/*"],
|
prod: ["build/prod/*"],
|
||||||
test: ["build/test/*"],
|
test: ["build/test/*"],
|
||||||
node: ["build/node/*"],
|
node: ["build/node/*"],
|
||||||
docs: ["docs/*", "!docs/*.conf.json", "!docs/*.ico"],
|
docs: ["docs/*", "!docs/*.conf.json", "!docs/*.ico", "!docs/*.png"],
|
||||||
},
|
},
|
||||||
eslint: {
|
eslint: {
|
||||||
options: {
|
options: {
|
||||||
|
@ -319,15 +319,29 @@ module.exports = function (grunt) {
|
||||||
copy: {
|
copy: {
|
||||||
ghPages: {
|
ghPages: {
|
||||||
options: {
|
options: {
|
||||||
process: function (content) {
|
process: function (content, srcpath) {
|
||||||
// Add Google Analytics code to index.html
|
// Add Google Analytics code to index.html
|
||||||
content = content.replace("</body></html>",
|
if (srcpath.indexOf("index.html") >= 0) {
|
||||||
grunt.file.read("src/web/static/ga.html") + "</body></html>");
|
content = content.replace("</body></html>",
|
||||||
return grunt.template.process(content);
|
grunt.file.read("src/web/static/ga.html") + "</body></html>");
|
||||||
}
|
return grunt.template.process(content, srcpath);
|
||||||
|
} else {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
noProcess: ["**", "!**/*.html"]
|
||||||
},
|
},
|
||||||
src: "build/prod/index.html",
|
files: [
|
||||||
dest: "build/prod/index.html"
|
{
|
||||||
|
src: "build/prod/index.html",
|
||||||
|
dest: "build/prod/index.html"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
expand: true,
|
||||||
|
src: "docs/**",
|
||||||
|
dest: "build/prod/"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
chmod: {
|
chmod: {
|
||||||
|
|
BIN
docs/favicon.ico
BIN
docs/favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
@ -19,7 +19,7 @@
|
||||||
"outputSourcePath": true,
|
"outputSourcePath": true,
|
||||||
"dateFormat": "ddd MMM Do YYYY",
|
"dateFormat": "ddd MMM Do YYYY",
|
||||||
"sort": false,
|
"sort": false,
|
||||||
"logoFile": "../build/prod/images/cyberchef-32x32.png",
|
"logoFile": "cyberchef-32x32.png",
|
||||||
"cleverLinks": false,
|
"cleverLinks": false,
|
||||||
"monospaceLinks": false,
|
"monospaceLinks": false,
|
||||||
"protocol": "html://",
|
"protocol": "html://",
|
||||||
|
|
Loading…
Reference in New Issue