Skip to content

Commit

Permalink
* Support for comments pointed out in issue #47
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Dec 11, 2014
1 parent 977df99 commit 0955305
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 27 deletions.
14 changes: 2 additions & 12 deletions dist/mermaid.full.js
Original file line number Diff line number Diff line change
Expand Up @@ -13022,24 +13022,19 @@ module.exports={
"codeclimate-test-reporter": "0.0.4",
"d3": "~3.4.13",
"dagre-d3": "~0.3.2",
"dox": "^0.6.1",
"gulp": "~3.8.9",
"gulp-browserify": "^0.5.0",
"gulp-bump": "^0.1.11",
"gulp-concat": "~2.4.1",
"gulp-dox": "^0.1.1",
"gulp-ext-replace": "^0.1.0",
"gulp-ext-replace": "~0.1.0",
"gulp-istanbul": "^0.4.0",
"gulp-jasmine": "~1.0.1",
"gulp-jison": "~1.0.0",
"gulp-less": "^1.3.6",
"gulp-markdown": "^1.0.0",
"gulp-rename": "~1.2.0",
"gulp-shell": "^0.2.10",
"gulp-tag-version": "^1.2.1",
"gulp-uglify": "~1.0.1",
"gulp-util": "^3.0.1",
"gulpsmith": "^0.5.2",
"he": "^0.5.0",
"jasmine": "~2.0.1",
"jison": "~0.4.15",
Expand All @@ -13055,14 +13050,9 @@ module.exports={
"lodash.defaults": "^2.4.1",
"lodash.templatesettings": "^2.4.1",
"lodash.values": "^2.4.1",
"markdown": "^0.5.0",
"metalsmith": "^1.0.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-templates": "^0.6.0",
"mock-browser": "^0.90.27",
"path": "^0.4.9",
"rewire": "^2.1.3",
"through2": "^0.6.3"
"rewire": "^2.1.3"
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/mermaid.full.min.js

Large diffs are not rendered by default.

14 changes: 2 additions & 12 deletions dist/mermaid.slim.js
Original file line number Diff line number Diff line change
Expand Up @@ -12990,24 +12990,19 @@ module.exports={
"codeclimate-test-reporter": "0.0.4",
"d3": "~3.4.13",
"dagre-d3": "~0.3.2",
"dox": "^0.6.1",
"gulp": "~3.8.9",
"gulp-browserify": "^0.5.0",
"gulp-bump": "^0.1.11",
"gulp-concat": "~2.4.1",
"gulp-dox": "^0.1.1",
"gulp-ext-replace": "^0.1.0",
"gulp-ext-replace": "~0.1.0",
"gulp-istanbul": "^0.4.0",
"gulp-jasmine": "~1.0.1",
"gulp-jison": "~1.0.0",
"gulp-less": "^1.3.6",
"gulp-markdown": "^1.0.0",
"gulp-rename": "~1.2.0",
"gulp-shell": "^0.2.10",
"gulp-tag-version": "^1.2.1",
"gulp-uglify": "~1.0.1",
"gulp-util": "^3.0.1",
"gulpsmith": "^0.5.2",
"he": "^0.5.0",
"jasmine": "~2.0.1",
"jison": "~0.4.15",
Expand All @@ -13023,14 +13018,9 @@ module.exports={
"lodash.defaults": "^2.4.1",
"lodash.templatesettings": "^2.4.1",
"lodash.values": "^2.4.1",
"markdown": "^0.5.0",
"metalsmith": "^1.0.1",
"metalsmith-markdown": "^0.2.1",
"metalsmith-templates": "^0.6.0",
"mock-browser": "^0.90.27",
"path": "^0.4.9",
"rewire": "^2.1.3",
"through2": "^0.6.3"
"rewire": "^2.1.3"
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/mermaid.slim.min.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ var rename = require('gulp-rename');
var istanbul = require('gulp-istanbul');
var bump = require('gulp-bump');
var tag_version = require('gulp-tag-version');
var dox = require("gulp-dox");
var markdown = require("metalsmith-markdown");

gulp.task('jison2', function() {
return gulp.src('./src/*.jison')
Expand Down Expand Up @@ -151,4 +153,5 @@ function inc(importance) {

gulp.task('patch', function() { return inc('patch'); })
gulp.task('feature', function() { return inc('minor'); })
gulp.task('release', function() { return inc('major'); })
gulp.task('release', function() { return inc('major'); })

0 comments on commit 0955305

Please sign in to comment.