Skip to content

Commit

Permalink
6.2.0 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
LisaManresa authored and paulfalgout committed Jun 4, 2020
1 parent ff1acea commit 9d2d3e2
Show file tree
Hide file tree
Showing 8 changed files with 1,296 additions and 1,415 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### v6.2.0

* **Features**
* Updated underscore peer dependency version
* Throw a "Child app does not exist." error on startChild app when child app undefined

#### v6.1.0

* **Features**
Expand Down
7 changes: 6 additions & 1 deletion dist/marionette.toolkit.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,11 @@ var ChildAppsMixin = {
*/
startChildApp: function startChildApp(appName, options) {
var childApp = this.getChildApp(appName);

if (!childApp) {
throw new Error("A child app with the name ".concat(appName, " does not exist."));
}

return this._startChildApp(childApp, options);
},

Expand Down Expand Up @@ -1535,7 +1540,7 @@ var Component = Application.extend({

_.extend(Component.prototype, StateMixin, ViewEventsMixin);

var version = "6.1.0";
var version = "6.2.0";

/**
* @module Toolkit
Expand Down
9 changes: 7 additions & 2 deletions dist/marionette.toolkit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/marionette.toolkit.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/marionette.toolkit.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/marionette.toolkit.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "marionette.toolkit",
"version": "6.1.1",
"version": "6.2.0",
"description": "A collection of opinionated Backbone.Marionette extensions for large scale application architecture.",
"main": "dist/marionette.toolkit.js",
"module": "dist/marionette.toolkit.esm.js",
Expand Down
2,679 changes: 1,272 additions & 1,407 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 9d2d3e2

Please sign in to comment.