From cb6e5266cd2c43f3269f4c94498529f868c55fcc Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Mon, 8 Sep 2014 10:08:42 -0400 Subject: [PATCH 1/3] Update jekyll config/info --- CONTRIBUTING.md | 6 +++++- _config.yml | 3 +-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 82a53de3..97df3fc4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,7 +33,11 @@ Note that the demos and documentation utilize the [jekyll templating system][jekyll] and to use them *locally* you will need to build them using jekyll. Once installed, all you need to do from the command line is run jekyll: - jekyll + jekyll serve + +or if you're actively developing and want auto-reloading: + + jekyll serve --watch [jekyll]: https://github.com/mojombo/jekyll diff --git a/_config.yml b/_config.yml index 93f9e7b4..f54edddd 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,4 @@ -pygments: true -auto: true +highlighter: pygments markdown: kramdown title: Recline Data Explorer and Library From 9e0083c18e091076551ff2d464ac4bc66c8e86f6 Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Mon, 8 Sep 2014 10:12:46 -0400 Subject: [PATCH 2/3] Singularize repository (per npm warning) --- package.json | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index def4e482..82776db1 100644 --- a/package.json +++ b/package.json @@ -26,11 +26,9 @@ }, "lib" : "src", "main" : "dist/recline.js", - "repositories": [ - { - "type": "git", - "url": "http://github.com/okfn/recline.git", - "path": "src" - } - ] + "repository": { + "type": "git", + "url": "http://github.com/okfn/recline.git", + "path": "src" + } } From cfdce8fbc71c9a82d94c36a30a0c347d5abe0506 Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Mon, 8 Sep 2014 10:44:03 -0400 Subject: [PATCH 3/3] Ignore node_modules --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f5a4aa25..fb371404 100755 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ sandbox/* .*.swp .*.swo _site/* +node_modules/*