Skip to content

Commit

Permalink
Disable browser caching on dev server, update dependencies, bump up v…
Browse files Browse the repository at this point in the history
…ersion.
  • Loading branch information
marvindanig committed Apr 27, 2019
1 parent c3d017b commit b9bc391
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions bin/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ program
}).on('--help', () => {
console.log(' Examples:')
console.log()
console.log(' $ bookiza new Sun-And-Sand -l 6')
console.log(' $ bookiza new Live-Action-Hero -l 5')
console.log(chalk.bold.bgGreen(' $ b n Wuthering-Heights -l 100'))
console.log(' $ bookiza new sun-and-sand -l 6')
console.log(' $ b new my-live-book --leafs 15')
console.log(chalk.bold.bgGreen(' $ b n wuthering-heights -l 100 -t novel'))
console.log()
})

Expand Down
8 changes: 4 additions & 4 deletions crust/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
const del = r('del')
const delayed = r('delayed')

// Preprocessors / Transpilers
// Preprocessors / Transpilers
const haml = r('gulp-haml')
const markdown = r('gulp-markdown')
const sass = r('gulp-sass')
Expand Down Expand Up @@ -64,9 +64,9 @@
done()
}))

// *************************************//
// ************ Book Indexer ***********//
// *************************************//
//*************************************//
//************ Book Indexer ***********//
//*************************************//

gulp.task('indexPage', (done) => {
indexPageHandler()
Expand Down
3 changes: 3 additions & 0 deletions crust/index-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv=”Pragma” content=”no-cache”>
<meta http-equiv=”Expires” content=”-1″>
<meta http-equiv=”CACHE-CONTROL” content=”NO-CACHE”>
<title>{{{ BOOKNAME }}} | BOOKIZA.JS </title>
<link rel="shortcut icon" href="crust/images/favicon.png">

Expand Down
4 changes: 2 additions & 2 deletions crust/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"dependencies": {
"babel-preset-env": "1.7.0",
"book-length": "1.0.5",
"browser-sync": "2.26.3",
"browser-sync": "2.26.5",
"chalk": "2.4.2",
"del": "4.1.0",
"delayed": "1.0.1",
"fs-extra": "7.0.1",
"gulp": "4.0.0",
"gulp": "4.0.1",
"gulp-babel": "8.0.0",
"gulp-compile-handlebars": "0.6.1",
"gulp-concat": "2.6.1",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bookiza",
"version": "1.1.8",
"version": "1.1.9",
"description": "The book reification tool for web",
"logo": {
"file": "./assets/images/bookiza.png"
Expand Down

0 comments on commit b9bc391

Please sign in to comment.