-
Notifications
You must be signed in to change notification settings - Fork 400
Closed
Milestone
Description
serve() should be altered so a user can call serve() (the internal function below) without first building.
serve: function (options) {
options.watch = true;
return this.build(() => {}, options).then(function () {
serve(patternlab);
});
},I am thinking an option that would change the code to something like
serve: function (options) {
if (options.serveOnly) {
serve(patternlab);
return Promise.resolve();
}
options.watch = true;
return this.build(() => {}, options).then(function () {
serve(patternlab);
});
},this is pseudocode, but I think it'd work
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels