Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Aug 13, 2018
1 parent 28771f2 commit 94c8eb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function generateHtml(files, title) {
webtreemapJs: btoa(fs.readFileSync(require.resolve('./vendor/webtreemap.js'))),
webtreemapCss: btoa(fs.readFileSync(require.resolve('./vendor/webtreemap.css')))
};

var html = fs.readFileSync(path.join(__dirname, 'tree-viz.html')).toString();

html = html.replace('INSERT TREE HERE', JSON.stringify(files, null, ' '))
Expand Down Expand Up @@ -290,7 +290,7 @@ function explore(code, map, options) {
}

if (require.main === module) {
var args = docopt(doc, {version: '1.5.0'});
var args = docopt(doc, {version: '1.6.0'});
expandGlob(args);
validateArgs(args);

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": "source-map-explorer",
"version": "1.5.0",
"version": "1.6.0",
"description": "Analyze and debug space usage through source maps",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 94c8eb4

Please sign in to comment.