Skip to content

Commit

Permalink
Added gh-pages plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-martin committed Sep 22, 2016
1 parent 6b31d49 commit 85a1b02
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 38 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules
.DS_Store
lib-cov
.idea
.grunt
atlassian-ide-plugin.xml
7 changes: 7 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ module.exports = function (grunt) {
reporter: 'spec'
}
}
},
'gh-pages': {
options: {
base: 'docs'
},
src: ['**']
}
});

Expand All @@ -32,6 +38,7 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-it');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-gh-pages');

grunt.registerTask("benchmark", "run benchmarks", function () {
var done = this.async();
Expand Down
77 changes: 39 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,41 @@
{
"name": "fast-csv",
"version": "2.2.0",
"description": "CSV parser and writer",
"main": "index.js",
"scripts": {
"test": "grunt jshint it"
},
"repository": {
"type": "git",
"url": "[email protected]:C2FO/fast-csv.git"
},
"keywords": [
"csv",
"parser",
"fast",
"writer",
"csv writer",
"CSV"
],
"homepage": "http://c2fo.github.com/fast-csv/index.html",
"author": "Doug Martin",
"license": "MIT",
"devDependencies": {
"it": "^1.0.1",
"grunt-it": "^1.0.0",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-exec": "^0.4.5"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"is-extended": "0.0.10",
"object-extended": "0.0.7",
"extended": "0.0.6",
"string-extended": "0.0.8"
}
"name": "fast-csv",
"version": "2.2.0",
"description": "CSV parser and writer",
"main": "index.js",
"scripts": {
"test": "grunt jshint it"
},
"repository": {
"type": "git",
"url": "[email protected]:C2FO/fast-csv.git"
},
"keywords": [
"csv",
"parser",
"fast",
"writer",
"csv writer",
"CSV"
],
"homepage": "http://c2fo.github.com/fast-csv/index.html",
"author": "Doug Martin",
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-exec": "^0.4.5",
"grunt-gh-pages": "^2.0.0",
"grunt-it": "^1.0.0",
"it": "^1.0.1"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"is-extended": "0.0.10",
"object-extended": "0.0.7",
"extended": "0.0.6",
"string-extended": "0.0.8"
}
}

0 comments on commit 85a1b02

Please sign in to comment.