bbop-graph
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -12,3 +12,3 @@ //// | ||
var bump = require('gulp-bump'); | ||
//var pandoc = require('gulp-pandoc'); | ||
var del = require('del'); | ||
@@ -25,8 +25,23 @@ var paths = { | ||
gulp.task('patch-bump', function(){ | ||
gulp.task('patch-bump', function(cb){ | ||
gulp.src('./package.json') | ||
.pipe(bump({type: 'patch'})) | ||
.pipe(gulp.dest('./')); | ||
cb(null); | ||
}); | ||
gulp.task('minor-bump', function(cb){ | ||
gulp.src('./package.json') | ||
.pipe(bump({type: 'minor'})) | ||
.pipe(gulp.dest('./')); | ||
cb(null); | ||
}); | ||
gulp.task('major-bump', function(cb){ | ||
gulp.src('./package.json') | ||
.pipe(bump({type: 'major'})) | ||
.pipe(gulp.dest('./')); | ||
cb(null); | ||
}); | ||
// Build docs directory with JSDoc. | ||
@@ -36,24 +51,8 @@ //gulp.task('doc', ['md-to-org', 'jsdoc']); | ||
// // Convert README.org to a README.md for JSDoc to use as an index. | ||
// // TODO: My pandoc does not support the org reader yet, so di it the other way | ||
// // for now | ||
// //gulp.task('org-to-md', function() { | ||
// gulp.task('md-to-org', function() { | ||
// gulp.src('./README.md') | ||
// //gulp.src('./README.org') | ||
// .pipe(pandoc({ | ||
// // from: 'orgmode', | ||
// // to: 'markdown', | ||
// from: 'markdown', | ||
// to: 'orgmode', | ||
// ext: '.org', | ||
// args: ['--smart'] | ||
// })) | ||
// .pipe(gulp.dest('./')); | ||
// }); | ||
// Build docs directory with JSDoc. | ||
gulp.task('jsdoc', function() { | ||
// Completely dependent on clean before running doc. | ||
gulp.task('jsdoc', ['clean'], function(cb) { | ||
gulp.src(paths.docable, paths.readme) | ||
.pipe(jsdoc('./doc')); | ||
cb(null); | ||
}); | ||
@@ -64,2 +63,3 @@ | ||
del(paths.transients); | ||
cb(null); | ||
}); | ||
@@ -66,0 +66,0 @@ |
{ | ||
"name": "bbop-graph", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"license": "BSD-3-Clause", | ||
@@ -5,0 +5,0 @@ "description": "General purpose (mathematical) graph library in JavaScript.", |
# bbop-graph | ||
## Overview | ||
General purpose (mathematical) graph library in JavaScript. | ||
### Availability | ||
[GitHub](https://github.com/berkeleybop/bbop-graph) | ||
[NPM](https://www.npmjs.com/package/bbop-graph) | ||
## API | ||
[index](https://berkeleybop.github.io/bbop-graph/docs/index.html) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6266769
13
16
25219