Skip to content

Commit 37476a7

Browse files
committed
skipInstall will still install, but not delete current packages
1 parent 3902eb9 commit 37476a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/static_dist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ module.exports = function(options){
9797
}
9898

9999
return addPackages(options, buildFolder).then(function(){
100-
if(options.forceBuild) {
100+
if(options.forceBuild && !options.skipInstall) {
101101
return deletePackages(options, buildFolder, distFolder, hash);
102102
}
103103
}).then(function(){

html_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ describe("bit-docs-generate-html", function(){
276276
});
277277
});
278278

279-
it("doesn't blow away html values", function(){
279+
it("doesn't blow away dependency values", function(){
280280
bitDocsHTML({
281281
register: function(){},
282282
handle: function(name, fn) {

0 commit comments

Comments
 (0)