From b2561181f519343639b7f68d5631ac8c1e21cd4c Mon Sep 17 00:00:00 2001 From: imaustink Date: Fri, 7 Jul 2017 18:00:21 -0700 Subject: [PATCH 01/16] Copy static files from the build to the dist folder --- bit-docs.js | 5 ++-- site/default/static/build.js | 46 ++++++++++++++---------------------- 2 files changed, 21 insertions(+), 30 deletions(-) diff --git a/bit-docs.js b/bit-docs.js index 639bba1..25aa93b 100644 --- a/bit-docs.js +++ b/bit-docs.js @@ -30,12 +30,13 @@ module.exports = function(bitDocs){ siteConfig.html = { dependencies: {}, static: [], - templates: [] + templates: [], + staticDist: [] }; } var html = siteConfig.html; _.assign(html.dependencies, htmlConfig.dependencies || {}); - + mergeOnto("staticDist", html, htmlConfig); mergeOnto("static", html, htmlConfig); mergeOnto("templates", html, htmlConfig); }); diff --git a/site/default/static/build.js b/site/default/static/build.js index 0cf85be..8b4bd00 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -1,4 +1,3 @@ - var stealTools = require("steal-tools"), fsx = require('../../../../fs_extras'), Q = require('q'), @@ -16,46 +15,37 @@ module.exports = function(options, folders){ }); }); }; + + var staticDistPromises = []; + options.html.staticDist.forEach(function(dist){ + staticDistPromises.push(fsx.copy(dist, path.join(folders.dist))); + }); + if(options.devBuild) { // copy all dependencies var promise = Q.all([ fsx.copy(path.join(folders.build), path.join(folders.dist) ) - ]); + ].concat(staticDistPromises)); // copy everything and steal.js return promise; } else { - // run steal-tools and then copy things - return stealTools.build({ - config: __dirname+"/package.json!npm", - main: "bit-docs-site/static" - },{ - minify: options.minifyBuild === false ? false : true, - quiet: options.debug ? false : true, - debug: options.debug ? true : false, - bundleAssets: true + Promise.all(staticDistPromises).then(function(){ + // run steal-tools and then copy things + return stealTools.build({ + config: __dirname+"/package.json!npm", + main: "bit-docs-site/static" + },{ + minify: options.minifyBuild === false ? false : true, + quiet: options.debug ? false : true, + debug: options.debug ? true : false, + bundleAssets: true + }); }).then(function(){ if(options.debug) { console.log("BUILD: Copying build to dist."); } return fsx.copy(path.join(folders.build, "dist"), path.join(folders.dist) ); - // copy everything to DIST - /*return Q.all([ - fsx.mkdirs( path.join(folders.dist,"bundles") ).then(function(){ - return fsx.copy(path.join(folders.build,"bundles"), path.join(folders.dist,"bundles") ); - }), - fsx.copyFrom(path.join( require.resolve("steal"), "..", "steal.production.js"), path.join(folders.dist,"steal.production.js") ), - fsx.copy( path.join(folders.build,"html5shiv.js"), path.join(folders.dist,"html5shiv.js")), - - copyDir("fonts"), - - copyDir("img"), - copyDir("templates") - ]);*/ - }); } - - - }; From ee77b1289407fa31f57a6e6b1055ef7415b2c857 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 10:06:58 -0700 Subject: [PATCH 02/16] Bassics of copy staticDist wroking --- site/default/static/build.js | 53 ++++++++++++++++++++---------------- 1 file changed, 29 insertions(+), 24 deletions(-) diff --git a/site/default/static/build.js b/site/default/static/build.js index 8b4bd00..65b8810 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -1,51 +1,56 @@ -var stealTools = require("steal-tools"), - fsx = require('../../../../fs_extras'), - Q = require('q'), - path = require("path"); - +var stealTools = require("steal-tools"); +var fsExtra = require('fs-extra'); +var fsx = require('../../../../fs_extras'); +var Q = require('q'); +var path = require("path"); +var copy = Q.denodeify(fsExtra.copy); module.exports = function(options, folders){ - var copyDir = function(name){ - return fsx.mkdirs( path.join(folders.dist,name) ).then(function(){ + return fsx.mkdirs(path.join(folders.dist,name)).then(function(){ return fsx.exists(path.join(folders.build,name)).then(function(exists){ if(exists) { - return fsx.copy( path.join(folders.build,name), path.join(folders.dist,name) ); + return fsx.copy(path.join(folders.build,name), path.join(folders.dist,name)); } }); }); }; var staticDistPromises = []; - options.html.staticDist.forEach(function(dist){ - staticDistPromises.push(fsx.copy(dist, path.join(folders.dist))); - }); + if(options.html && options.html.staticDist){ + options.html.staticDist.forEach(function(dist){ + staticDistPromises.push(copy(path.join(process.cwd(), dist), folders.dist)); + }); + } if(options.devBuild) { // copy all dependencies var promise = Q.all([ - fsx.copy(path.join(folders.build), path.join(folders.dist) ) + fsx.copy(path.join(folders.build), path.join(folders.dist)) ].concat(staticDistPromises)); // copy everything and steal.js return promise; } else { - Promise.all(staticDistPromises).then(function(){ - // run steal-tools and then copy things - return stealTools.build({ - config: __dirname+"/package.json!npm", - main: "bit-docs-site/static" - },{ - minify: options.minifyBuild === false ? false : true, - quiet: options.debug ? false : true, - debug: options.debug ? true : false, - bundleAssets: true - }); + // run steal-tools and then copy things + return stealTools.build({ + config: __dirname+"/package.json!npm", + main: "bit-docs-site/static" + },{ + minify: options.minifyBuild === false ? false : true, + quiet: options.debug ? false : true, + debug: options.debug ? true : false, + bundleAssets: true }).then(function(){ if(options.debug) { console.log("BUILD: Copying build to dist."); } - return fsx.copy(path.join(folders.build, "dist"), path.join(folders.dist) ); + + var promise = Q.all([ + fsx.copy(path.join(folders.build, "dist"), path.join(folders.dist)) + ].concat(staticDistPromises)); + + return promise; }); } }; From 05cccd4db117d322070d635a701167177a579081 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 10:07:22 -0700 Subject: [PATCH 03/16] Added test for copying staticDist --- build/build_test.js | 59 ++++++++++++++++++++++++++------------- test-static-dist/test.css | 3 ++ 2 files changed, 42 insertions(+), 20 deletions(-) create mode 100644 test-static-dist/test.css diff --git a/build/build_test.js b/build/build_test.js index 5e81315..a05e965 100644 --- a/build/build_test.js +++ b/build/build_test.js @@ -1,13 +1,14 @@ require("./make_default_helpers_test"); -var getRenderer = require('./get_renderer'), - getPartials = require('./get_partials'), - build = require("./build"), - assert = require('assert'), - Q = require('q'), - path = require('path'), - rmdir = require('rimraf'), - fs = require('fs'); +var getRenderer = require('./get_renderer'); +var getPartials = require('./get_partials'); +var build = require("./build"); +var assert = require('assert'); +var Q = require('q'); +var path = require('path'); +var rmdir = require('rimraf'); +var fs = require('fs'); +var read = Q.denodeify(fs.readFile); describe("documentjs/lib/generators/html/build",function(){ @@ -105,21 +106,39 @@ describe("documentjs/lib/generators/html/build",function(){ }); - it("builds the static dist", function(done){ + it("builds the static dist", function(){ this.timeout(120000); - build.staticDist({ + return build.staticDist({ forceBuild: true, - html: {dependencies: {"can-component": "3.0.0-pre.9"}} - }).then(function(result){ - fs.readFile(path.join(__dirname, "..", result.distFolder, "bundles","bit-docs-site","static.js"), function(err, res){ - if(err) { - done(err); - } else { - assert.ok(/can-component/.test(res), "got static.js with component"); - done(); + html: { + dependencies: { + "can-component": "3.0.0-pre.9" } - }); - }, done); + } + }).then(function(result){ + return read(path.join(__dirname, "..", result.distFolder, "bundles","bit-docs-site","static.js")); + }).then(function(res){ + assert.ok(/can-component/.test(res), "got static.js with component"); + }); + }); + + it("copy staticDist files to static dist", function(){ + this.timeout(120000); + return build.staticDist({ + forceBuild: true, + html: { + dependencies: { + "can-component": "3.0.0-pre.9" + }, + staticDist: [ + 'test-static-dist' + ] + }, + }).then(function(result){ + return read(path.join(__dirname, "..", result.distFolder, "test.css")); + }).then(function(res){ + assert.ok(/#TestID/.test(res), "got static.js with component"); + }); }); it("makes linked content",function(done){ diff --git a/test-static-dist/test.css b/test-static-dist/test.css new file mode 100644 index 0000000..99f3865 --- /dev/null +++ b/test-static-dist/test.css @@ -0,0 +1,3 @@ +#TestID { + display: block; +} \ No newline at end of file From 97d213e8505da80ad607c43fd95152114a8bf49c Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 11:16:31 -0700 Subject: [PATCH 04/16] Fixed source dist path --- site/default/static/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/default/static/build.js b/site/default/static/build.js index 65b8810..e57c935 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -19,7 +19,7 @@ module.exports = function(options, folders){ var staticDistPromises = []; if(options.html && options.html.staticDist){ options.html.staticDist.forEach(function(dist){ - staticDistPromises.push(copy(path.join(process.cwd(), dist), folders.dist)); + staticDistPromises.push(copy(path.join(__dirname, '../../../..', dist), folders.dist)); }); } From 186cc6dd20dd3de1613dd10bd627f964387da838 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 11:58:08 -0700 Subject: [PATCH 05/16] Made staticDist paths relative --- build/build_test.js | 2 +- site/default/static/build.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build_test.js b/build/build_test.js index a05e965..a7c8f66 100644 --- a/build/build_test.js +++ b/build/build_test.js @@ -131,7 +131,7 @@ describe("documentjs/lib/generators/html/build",function(){ "can-component": "3.0.0-pre.9" }, staticDist: [ - 'test-static-dist' + path.join(__dirname, '..', 'test-static-dist') ] }, }).then(function(result){ diff --git a/site/default/static/build.js b/site/default/static/build.js index e57c935..0fcafc3 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -19,7 +19,7 @@ module.exports = function(options, folders){ var staticDistPromises = []; if(options.html && options.html.staticDist){ options.html.staticDist.forEach(function(dist){ - staticDistPromises.push(copy(path.join(__dirname, '../../../..', dist), folders.dist)); + staticDistPromises.push(copy(dist, folders.dist)); }); } From 43a382e8ea27f0e25fe62a46b8782d4d820db423 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 16:13:47 -0700 Subject: [PATCH 06/16] Refactor dedundant code --- site/default/static/build.js | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/site/default/static/build.js b/site/default/static/build.js index 0fcafc3..137a5af 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -19,17 +19,16 @@ module.exports = function(options, folders){ var staticDistPromises = []; if(options.html && options.html.staticDist){ options.html.staticDist.forEach(function(dist){ - staticDistPromises.push(copy(dist, folders.dist)); + var out = path.join(__dirname, '..', '..', '..', '..', folders.dist); + staticDistPromises.push(copy(dist, out)); }); } if(options.devBuild) { // copy all dependencies - var promise = Q.all([ - fsx.copy(path.join(folders.build), path.join(folders.dist)) - ].concat(staticDistPromises)); + staticDistPromises.push(fsx.copy(path.join(folders.build), path.join(folders.dist))); // copy everything and steal.js - return promise; + return Q.all(staticDistPromises); } else { // run steal-tools and then copy things @@ -46,11 +45,9 @@ module.exports = function(options, folders){ console.log("BUILD: Copying build to dist."); } - var promise = Q.all([ - fsx.copy(path.join(folders.build, "dist"), path.join(folders.dist)) - ].concat(staticDistPromises)); + staticDistPromises.push(fsx.copy(path.join(folders.build, "dist"), path.join(folders.dist))); - return promise; + return Q.all(staticDistPromises); }); } }; From 033f45fcee53c8c851d572028f70efca254f8305 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 16:42:03 -0700 Subject: [PATCH 07/16] Handle relative paths --- site/default/static/build.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/default/static/build.js b/site/default/static/build.js index 137a5af..4ea4269 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -20,6 +20,9 @@ module.exports = function(options, folders){ if(options.html && options.html.staticDist){ options.html.staticDist.forEach(function(dist){ var out = path.join(__dirname, '..', '..', '..', '..', folders.dist); + if(!path.isAbsolute(dist)){ + dist = path.join(process.cwd(), dist); + } staticDistPromises.push(copy(dist, out)); }); } From 330ee303cc1bd2ad89f9d8dc3d817770962b9d33 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 17:19:54 -0700 Subject: [PATCH 08/16] Test relative paths --- build/build_test.js | 21 ++++++++++++++++++++- site/default/static/build.js | 8 +++++++- test-static-dist.html | 1 + 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 test-static-dist.html diff --git a/build/build_test.js b/build/build_test.js index a7c8f66..0d63bab 100644 --- a/build/build_test.js +++ b/build/build_test.js @@ -122,7 +122,7 @@ describe("documentjs/lib/generators/html/build",function(){ }); }); - it("copy staticDist files to static dist", function(){ + it("copy staticDist folders to static dist", function(){ this.timeout(120000); return build.staticDist({ forceBuild: true, @@ -141,6 +141,25 @@ describe("documentjs/lib/generators/html/build",function(){ }); }); + it.only("copy staticDist files to static dist", function(){ + this.timeout(120000); + return build.staticDist({ + forceBuild: true, + html: { + dependencies: { + "can-component": "3.0.0-pre.9" + }, + staticDist: [ + './test-static-dist.html' + ] + }, + }).then(function(result){ + return read(path.join(__dirname, "..", result.distFolder, "test-static-dist.html")); + }).then(function(res){ + assert.ok(/hello world/.test(res), "got static.js with component"); + }); + }); + it("makes linked content",function(done){ var options = { html: { templates: path.join(__dirname,"test","escaped") }, diff --git a/site/default/static/build.js b/site/default/static/build.js index 4ea4269..f627967 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -23,7 +23,13 @@ module.exports = function(options, folders){ if(!path.isAbsolute(dist)){ dist = path.join(process.cwd(), dist); } - staticDistPromises.push(copy(dist, out)); + staticDistPromises.push(new Promise(function(resolve, reject){ + fsExtra.copy(function(err, res){ + if(err) return reject(err); + resolve(res); + }); + })); + //staticDistPromises.push(copy(dist, out)); }); } diff --git a/test-static-dist.html b/test-static-dist.html new file mode 100644 index 0000000..95d09f2 --- /dev/null +++ b/test-static-dist.html @@ -0,0 +1 @@ +hello world \ No newline at end of file From 02bbb4814888600d5bbd2b151ece1f10daa18e9a Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 17:35:23 -0700 Subject: [PATCH 09/16] Fix test for relative paths --- build/build_test.js | 10 +++++----- site/default/static/build.js | 8 +------- test-static-dist.html | 1 - 3 files changed, 6 insertions(+), 13 deletions(-) delete mode 100644 test-static-dist.html diff --git a/build/build_test.js b/build/build_test.js index 0d63bab..fbedf87 100644 --- a/build/build_test.js +++ b/build/build_test.js @@ -122,7 +122,7 @@ describe("documentjs/lib/generators/html/build",function(){ }); }); - it("copy staticDist folders to static dist", function(){ + it("copy absolute staticDist folders to static dist", function(){ this.timeout(120000); return build.staticDist({ forceBuild: true, @@ -141,7 +141,7 @@ describe("documentjs/lib/generators/html/build",function(){ }); }); - it.only("copy staticDist files to static dist", function(){ + it("copy relative staticDist folders to static dist", function(){ this.timeout(120000); return build.staticDist({ forceBuild: true, @@ -150,13 +150,13 @@ describe("documentjs/lib/generators/html/build",function(){ "can-component": "3.0.0-pre.9" }, staticDist: [ - './test-static-dist.html' + './test-static-dist' ] }, }).then(function(result){ - return read(path.join(__dirname, "..", result.distFolder, "test-static-dist.html")); + return read(path.join(__dirname, "..", result.distFolder, "test.css")); }).then(function(res){ - assert.ok(/hello world/.test(res), "got static.js with component"); + assert.ok(/#TestID/.test(res), "got static.js with component"); }); }); diff --git a/site/default/static/build.js b/site/default/static/build.js index f627967..4ea4269 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -23,13 +23,7 @@ module.exports = function(options, folders){ if(!path.isAbsolute(dist)){ dist = path.join(process.cwd(), dist); } - staticDistPromises.push(new Promise(function(resolve, reject){ - fsExtra.copy(function(err, res){ - if(err) return reject(err); - resolve(res); - }); - })); - //staticDistPromises.push(copy(dist, out)); + staticDistPromises.push(copy(dist, out)); }); } diff --git a/test-static-dist.html b/test-static-dist.html deleted file mode 100644 index 95d09f2..0000000 --- a/test-static-dist.html +++ /dev/null @@ -1 +0,0 @@ -hello world \ No newline at end of file From 1ec61188cf2bfc06ee1f3b3c24b5076bab11eaca Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 17:38:59 -0700 Subject: [PATCH 10/16] Cleanup tests --- build/build_test.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/build/build_test.js b/build/build_test.js index fbedf87..efc40e1 100644 --- a/build/build_test.js +++ b/build/build_test.js @@ -127,9 +127,6 @@ describe("documentjs/lib/generators/html/build",function(){ return build.staticDist({ forceBuild: true, html: { - dependencies: { - "can-component": "3.0.0-pre.9" - }, staticDist: [ path.join(__dirname, '..', 'test-static-dist') ] @@ -137,7 +134,7 @@ describe("documentjs/lib/generators/html/build",function(){ }).then(function(result){ return read(path.join(__dirname, "..", result.distFolder, "test.css")); }).then(function(res){ - assert.ok(/#TestID/.test(res), "got static.js with component"); + assert.ok(/#TestID/.test(res), "got test.css file"); }); }); @@ -146,9 +143,6 @@ describe("documentjs/lib/generators/html/build",function(){ return build.staticDist({ forceBuild: true, html: { - dependencies: { - "can-component": "3.0.0-pre.9" - }, staticDist: [ './test-static-dist' ] @@ -156,7 +150,7 @@ describe("documentjs/lib/generators/html/build",function(){ }).then(function(result){ return read(path.join(__dirname, "..", result.distFolder, "test.css")); }).then(function(res){ - assert.ok(/#TestID/.test(res), "got static.js with component"); + assert.ok(/#TestID/.test(res), "got test.css file"); }); }); From a79df0190ed50c563ae57dc121dc18a555274931 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 18:09:49 -0700 Subject: [PATCH 11/16] Prevent errors with undefined prop --- bit-docs.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bit-docs.js b/bit-docs.js index 25aa93b..a2c32f8 100644 --- a/bit-docs.js +++ b/bit-docs.js @@ -3,8 +3,11 @@ var _ = require("lodash"); var tags = require("./tags/tags"); var mergeOnto = function(prop, dest, source){ + if(!dest[prop]) { + dest[prop] = {}; + } if(source[prop]) { - dest[prop] = dest[prop].concat(source[prop]) + dest[prop] = dest[prop].concat(source[prop]); } }; From 4d564a6893c75a5b2cf1b4115e68afff78184b97 Mon Sep 17 00:00:00 2001 From: imaustink Date: Mon, 10 Jul 2017 18:11:27 -0700 Subject: [PATCH 12/16] Default to array not object --- bit-docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit-docs.js b/bit-docs.js index a2c32f8..7c543aa 100644 --- a/bit-docs.js +++ b/bit-docs.js @@ -4,7 +4,7 @@ var tags = require("./tags/tags"); var mergeOnto = function(prop, dest, source){ if(!dest[prop]) { - dest[prop] = {}; + dest[prop] = []; } if(source[prop]) { dest[prop] = dest[prop].concat(source[prop]); From 902019306198afc25dabe9f46474646a1d3f2cfa Mon Sep 17 00:00:00 2001 From: imaustink Date: Tue, 11 Jul 2017 08:58:35 -0700 Subject: [PATCH 13/16] Removed cruft --- site/default/static/build.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/site/default/static/build.js b/site/default/static/build.js index 4ea4269..e57e7ac 100644 --- a/site/default/static/build.js +++ b/site/default/static/build.js @@ -1,9 +1,7 @@ var stealTools = require("steal-tools"); -var fsExtra = require('fs-extra'); var fsx = require('../../../../fs_extras'); var Q = require('q'); var path = require("path"); -var copy = Q.denodeify(fsExtra.copy); module.exports = function(options, folders){ var copyDir = function(name){ @@ -19,11 +17,10 @@ module.exports = function(options, folders){ var staticDistPromises = []; if(options.html && options.html.staticDist){ options.html.staticDist.forEach(function(dist){ - var out = path.join(__dirname, '..', '..', '..', '..', folders.dist); if(!path.isAbsolute(dist)){ dist = path.join(process.cwd(), dist); } - staticDistPromises.push(copy(dist, out)); + staticDistPromises.push(fsx.copyFrom(dist, folders.dist)); }); } From f6208cf6da57814e87cb5e00335f051c96cbabaf Mon Sep 17 00:00:00 2001 From: imaustink Date: Tue, 11 Jul 2017 09:27:12 -0700 Subject: [PATCH 14/16] Pre-release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ff7e9c6..548e2f8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bit-docs-generate-html", - "version": "0.6.0", + "version": "0.6.0-pre", "description": "Generates an HTML site with mustache templates", "main": "index.js", "scripts": { From ae069d0102fcd71ddcb030d0cf9d92ed2270a4d3 Mon Sep 17 00:00:00 2001 From: imaustink Date: Tue, 11 Jul 2017 09:28:15 -0700 Subject: [PATCH 15/16] 0.6.0-pre.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 548e2f8..e42f85e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bit-docs-generate-html", - "version": "0.6.0-pre", + "version": "0.6.0-pre.0", "description": "Generates an HTML site with mustache templates", "main": "index.js", "scripts": { From 70cb8ae22434032c8b5d3819d6472851b3966b03 Mon Sep 17 00:00:00 2001 From: imaustink Date: Tue, 11 Jul 2017 09:40:42 -0700 Subject: [PATCH 16/16] 0.6.0-pre.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e42f85e..6b811ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bit-docs-generate-html", - "version": "0.6.0-pre.0", + "version": "0.6.0-pre.1", "description": "Generates an HTML site with mustache templates", "main": "index.js", "scripts": {