ember-source 2.18.1 → 2.18.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17db0f409cf8ff32d29c3550a0c27f2de1d24d09605080975d7e25f079fff523
4
- data.tar.gz: 5743135f24f23899620a3b88ae37fb89980792e7485c534c326b3499775b13eb
3
+ metadata.gz: ff2f362bd7e57fd5a1cc22508caa36c91acab8dd60cd5e85cfb88f3141b99150
4
+ data.tar.gz: 79e301edaad5b4137976e34d560d97ebf48c8bd91a4762d1f6422735e8c1cd17
5
5
  SHA512:
6
- metadata.gz: f30b1396f99c936393906a54cf03d6aa66f45b18378bcbae774817e61aedbc78c3d677a44e57697781269e4d5a5a02bd4b2b9eb59fa5902c5242bef3fa86965e
7
- data.tar.gz: 3f0b4ea9eb168ffe9b8117ecbf989da28cf195ff128664d02156f3d2ecfb97fbdb17c82fb9cdd3ca0957f36c49de2007170d56140d0b4659b5bb30ce2529fc8b
6
+ metadata.gz: bb7977b177d602a2109d79bda376b88c73ed3f6b8bc51bee38ccc4cbe9631e6379ca9828163ca919a2a7fe48662b8eb070fe99b3d41db5fd1169d0f249e6aacf
7
+ data.tar.gz: 98dda3212e0649fea3a630a04a4ae8ef02dae6c979fad95beeebcbebbc27250175e2dfee6194b368fdf2bfca2fff385e7189425a74470dff29b2cae1fc363c42
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -17407,7 +17407,7 @@ enifed('ember/features', ['exports', 'ember-environment', 'ember-utils'], functi
17407
17407
  enifed("ember/version", ["exports"], function (exports) {
17408
17408
  "use strict";
17409
17409
 
17410
- exports.default = "2.18.1";
17410
+ exports.default = "2.18.2";
17411
17411
  });
17412
17412
  enifed("handlebars", ["exports"], function (exports) {
17413
17413
  "use strict";
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -17511,6 +17511,71 @@ enifed('ember-glimmer/tests/integration/components/error-handling-test', ['ember
17511
17511
  this.assertText('hello');
17512
17512
  };
17513
17513
 
17514
+ _class.prototype['@test it can recover resets the transaction when an error is thrown during didInsertElement'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringDidInsertElement(assert) {
17515
+ var _this4 = this;
17516
+
17517
+ var shouldThrow = true;
17518
+ var FooBarComponent = _helpers.Component.extend({
17519
+ didInsertElement: function () {
17520
+ this._super.apply(this, arguments);
17521
+ if (shouldThrow) {
17522
+ throw new Error('silly mistake!');
17523
+ }
17524
+ }
17525
+ });
17526
+
17527
+ this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
17528
+
17529
+ assert.throws(function () {
17530
+ _this4.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
17531
+ }, /silly mistake/);
17532
+
17533
+ assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
17534
+
17535
+ this.assertText('hello');
17536
+
17537
+ this.runTask(function () {
17538
+ return (0, _emberMetal.set)(_this4.context, 'switch', false);
17539
+ });
17540
+
17541
+ this.assertText('');
17542
+ };
17543
+
17544
+ _class.prototype['@test it can recover resets the transaction when an error is thrown during destroy'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringDestroy(assert) {
17545
+ var _this5 = this;
17546
+
17547
+ var shouldThrow = true;
17548
+ var FooBarComponent = _helpers.Component.extend({
17549
+ destroy: function () {
17550
+ this._super.apply(this, arguments);
17551
+ if (shouldThrow) {
17552
+ throw new Error('silly mistake!');
17553
+ }
17554
+ }
17555
+ });
17556
+
17557
+ this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
17558
+
17559
+ this.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
17560
+
17561
+ this.assertText('hello');
17562
+
17563
+ assert.throws(function () {
17564
+ _this5.runTask(function () {
17565
+ return (0, _emberMetal.set)(_this5.context, 'switch', false);
17566
+ });
17567
+ }, /silly mistake/);
17568
+
17569
+ this.assertText('');
17570
+
17571
+ shouldThrow = false;
17572
+ this.runTask(function () {
17573
+ return (0, _emberMetal.set)(_this5.context, 'switch', true);
17574
+ });
17575
+
17576
+ this.assertText('hello');
17577
+ };
17578
+
17514
17579
  return _class;
17515
17580
  }(_testCase.RenderingTest));
17516
17581
  });
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -16713,6 +16713,69 @@ enifed('ember-glimmer/tests/integration/components/error-handling-test', ['ember
16713
16713
  this.assertText('hello');
16714
16714
  };
16715
16715
 
16716
+ _class.prototype['@test it can recover resets the transaction when an error is thrown during didInsertElement'] = function (assert) {
16717
+ var _this4 = this;
16718
+
16719
+ var FooBarComponent = _helpers.Component.extend({
16720
+ didInsertElement: function () {
16721
+ this._super.apply(this, arguments);
16722
+
16723
+ throw new Error('silly mistake!');
16724
+ }
16725
+ });
16726
+
16727
+ this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
16728
+
16729
+ assert.throws(function () {
16730
+ _this4.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
16731
+ }, /silly mistake/);
16732
+
16733
+ assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
16734
+
16735
+ this.assertText('hello');
16736
+
16737
+ this.runTask(function () {
16738
+ return (0, _emberMetal.set)(_this4.context, 'switch', false);
16739
+ });
16740
+
16741
+ this.assertText('');
16742
+ };
16743
+
16744
+ _class.prototype['@test it can recover resets the transaction when an error is thrown during destroy'] = function (assert) {
16745
+ var _this5 = this;
16746
+
16747
+ var shouldThrow = true;
16748
+ var FooBarComponent = _helpers.Component.extend({
16749
+ destroy: function () {
16750
+ this._super.apply(this, arguments);
16751
+ if (shouldThrow) {
16752
+ throw new Error('silly mistake!');
16753
+ }
16754
+ }
16755
+ });
16756
+
16757
+ this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
16758
+
16759
+ this.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
16760
+
16761
+ this.assertText('hello');
16762
+
16763
+ assert.throws(function () {
16764
+ _this5.runTask(function () {
16765
+ return (0, _emberMetal.set)(_this5.context, 'switch', false);
16766
+ });
16767
+ }, /silly mistake/);
16768
+
16769
+ this.assertText('');
16770
+
16771
+ shouldThrow = false;
16772
+ this.runTask(function () {
16773
+ return (0, _emberMetal.set)(_this5.context, 'switch', true);
16774
+ });
16775
+
16776
+ this.assertText('hello');
16777
+ };
16778
+
16716
16779
  return _class;
16717
16780
  }(_testCase.RenderingTest));
16718
16781
  });
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -17514,8 +17514,11 @@ enifed('ember-glimmer/environment', ['exports', 'ember-babel', '@glimmer/runtime
17514
17514
  for (var i = 0; i < destroyedComponents.length; i++) {
17515
17515
  destroyedComponents[i].destroy();
17516
17516
  }
17517
- _GlimmerEnvironment.prototype.commit.call(this);
17518
- this.inTransaction = false;
17517
+ try {
17518
+ _GlimmerEnvironment.prototype.commit.call(this);
17519
+ } finally {
17520
+ this.inTransaction = false;
17521
+ }
17519
17522
  };
17520
17523
 
17521
17524
  return Environment;
@@ -47777,7 +47780,7 @@ enifed('ember/index', ['exports', 'require', 'ember-environment', 'node-module',
47777
47780
  enifed("ember/version", ["exports"], function (exports) {
47778
47781
  "use strict";
47779
47782
 
47780
- exports.default = "2.18.1";
47783
+ exports.default = "2.18.2";
47781
47784
  });
47782
47785
  enifed("handlebars", ["exports"], function (exports) {
47783
47786
  "use strict";
@@ -1209,7 +1209,7 @@ s=p.ClassBasedHelperReference}return function(e,t){return s.create(o,e,t.capture
1209
1209
  if(t)return t
1210
1210
  throw new Error(e+" is not a modifier")},r.prototype.toConditionalReference=function(e){return p.ConditionalReference.create(e)},r.prototype.iterableFor=function(e,t){return(0,l["default"])(e,t)},r.prototype.scheduleInstallModifier=function(t,n){this.isInteractive&&e.prototype.scheduleInstallModifier.call(this,t,n)},r.prototype.scheduleUpdateModifier=function(t,n){this.isInteractive&&e.prototype.scheduleUpdateModifier.call(this,t,n)},r.prototype.didDestroy=function(e){e.destroy()},r.prototype.begin=function(){this.inTransaction=!0,e.prototype.begin.call(this)},r.prototype.commit=function(){var t,n=this.destroyedComponents
1211
1211
  for(this.destroyedComponents=[],t=0;t<n.length;t++)n[t].destroy()
1212
- e.prototype.commit.call(this),this.inTransaction=!1},r}(n.Environment)
1212
+ try{e.prototype.commit.call(this)}finally{this.inTransaction=!1}},r}(n.Environment)
1213
1213
  e["default"]=j}),e("ember-glimmer/helper",["exports","@glimmer/reference","ember-runtime","ember-utils"],function(e,t,n,r){"use strict"
1214
1214
  e.SimpleHelper=e.RECOMPUTE_TAG=void 0,e.helper=function(e){return new s(e)}
1215
1215
  var i=e.RECOMPUTE_TAG=(0,r.symbol)("RECOMPUTE_TAG"),o=n.FrameworkObject.extend({isHelperInstance:!0,init:function(){this._super.apply(this,arguments),this[i]=new t.DirtyableTag},recompute:function(){this[i].dirty()}})
@@ -2571,7 +2571,7 @@ var b,_=s.computed
2571
2571
  _.alias=s.alias,s["default"].computed=_,s["default"].ComputedProperty=s.ComputedProperty,s["default"].cacheFor=s.cacheFor,s["default"].assert=u.assert,s["default"].warn=u.warn,s["default"].debug=u.debug,s["default"].deprecate=u.deprecate,s["default"].deprecateFunc=u.deprecateFunc,s["default"].runInDebug=u.runInDebug,s["default"].Debug={registerDeprecationHandler:u.registerDeprecationHandler,registerWarnHandler:u.registerWarnHandler},s["default"].merge=s.merge,s["default"].instrument=s.instrument,s["default"].subscribe=s.instrumentationSubscribe,s["default"].Instrumentation={instrument:s.instrument,subscribe:s.instrumentationSubscribe,unsubscribe:s.instrumentationUnsubscribe,reset:s.instrumentationReset},s["default"].Error=u.Error,s["default"].META_DESC=s.META_DESC,s["default"].meta=s.meta,s["default"].get=s.get,s["default"].getWithDefault=s.getWithDefault,s["default"]._getPath=s._getPath,s["default"].set=s.set,s["default"].trySet=s.trySet,s["default"].FEATURES=a.FEATURES,s["default"].FEATURES.isEnabled=u.isFeatureEnabled,s["default"]._Cache=s.Cache,s["default"].on=s.on,s["default"].addListener=s.addListener,s["default"].removeListener=s.removeListener,s["default"]._suspendListener=s.suspendListener,s["default"]._suspendListeners=s.suspendListeners,s["default"].sendEvent=s.sendEvent,s["default"].hasListeners=s.hasListeners,s["default"].watchedEvents=s.watchedEvents,s["default"].listenersFor=s.listenersFor,s["default"].isNone=s.isNone,s["default"].isEmpty=s.isEmpty,s["default"].isBlank=s.isBlank,s["default"].isPresent=s.isPresent,s["default"].run=s.run,s["default"]._ObserverSet=s.ObserverSet,s["default"].propertyWillChange=s.propertyWillChange,s["default"].propertyDidChange=s.propertyDidChange,s["default"].overrideChains=s.overrideChains,s["default"].beginPropertyChanges=s.beginPropertyChanges,s["default"].endPropertyChanges=s.endPropertyChanges,s["default"].changeProperties=s.changeProperties,s["default"].platform={defineProperty:!0,hasPropertyAccessors:!0},s["default"].defineProperty=s.defineProperty,s["default"].watchKey=s.watchKey,s["default"].unwatchKey=s.unwatchKey,s["default"].removeChainWatcher=s.removeChainWatcher,s["default"]._ChainNode=s.ChainNode,s["default"].finishChains=s.finishChains,s["default"].watchPath=s.watchPath,s["default"].unwatchPath=s.unwatchPath,s["default"].watch=s.watch,s["default"].isWatching=s.isWatching,s["default"].unwatch=s.unwatch,s["default"].destroy=s.deleteMeta,s["default"].libraries=s.libraries,s["default"].OrderedSet=s.OrderedSet,s["default"].Map=s.Map,s["default"].MapWithDefault=s.MapWithDefault,s["default"].getProperties=s.getProperties,s["default"].setProperties=s.setProperties,s["default"].expandProperties=s.expandProperties,s["default"].NAME_KEY=i.NAME_KEY,s["default"].addObserver=s.addObserver,s["default"].observersFor=s.observersFor,s["default"].removeObserver=s.removeObserver,s["default"]._suspendObserver=s._suspendObserver,s["default"]._suspendObservers=s._suspendObservers,s["default"].required=s.required,s["default"].aliasMethod=s.aliasMethod,s["default"].observer=s.observer,s["default"].immediateObserver=s._immediateObserver,s["default"].mixin=s.mixin,s["default"].Mixin=s.Mixin,s["default"].bind=s.bind,s["default"].Binding=s.Binding,s["default"].isGlobalPath=s.isGlobalPath,Object.defineProperty(s["default"],"ENV",{get:function(){return n.ENV},enumerable:!1}),Object.defineProperty(s["default"],"lookup",{get:function(){return n.context.lookup},set:function(e){n.context.lookup=e},enumerable:!1}),s["default"].EXTEND_PROTOTYPES=n.ENV.EXTEND_PROTOTYPES,Object.defineProperty(s["default"],"LOG_STACKTRACE_ON_DEPRECATION",{get:function(){return n.ENV.LOG_STACKTRACE_ON_DEPRECATION},set:function(e){n.ENV.LOG_STACKTRACE_ON_DEPRECATION=!!e},enumerable:!1}),Object.defineProperty(s["default"],"LOG_VERSION",{get:function(){return n.ENV.LOG_VERSION},set:function(e){n.ENV.LOG_VERSION=!!e},enumerable:!1}),Object.defineProperty(s["default"],"LOG_BINDINGS",{get:function(){return n.ENV.LOG_BINDINGS},set:function(e){n.ENV.LOG_BINDINGS=!!e},enumerable:!1}),Object.defineProperty(s["default"],"onerror",{get:s.getOnerror,set:s.setOnerror,enumerable:!1}),Object.defineProperty(s["default"],"K",{get:function(){return v}}),Object.defineProperty(s["default"],"testing",{get:u.isTesting,set:u.setTesting,enumerable:!1}),s["default"]._Backburner=c["default"],s["default"].Logger=l["default"],s["default"].String=p.String,s["default"].Object=p.Object,s["default"]._RegistryProxyMixin=p.RegistryProxyMixin,s["default"]._ContainerProxyMixin=p.ContainerProxyMixin,s["default"].compare=p.compare,s["default"].copy=p.copy,s["default"].isEqual=p.isEqual,s["default"].inject=p.inject,s["default"].Array=p.Array,s["default"].Comparable=p.Comparable,s["default"].Enumerable=p.Enumerable,s["default"].ArrayProxy=p.ArrayProxy,s["default"].ObjectProxy=p.ObjectProxy,s["default"].ActionHandler=p.ActionHandler,s["default"].CoreObject=p.CoreObject,s["default"].NativeArray=p.NativeArray,s["default"].Copyable=p.Copyable,s["default"].Freezable=p.Freezable,s["default"].FROZEN_ERROR=p.FROZEN_ERROR,s["default"].MutableEnumerable=p.MutableEnumerable,s["default"].MutableArray=p.MutableArray,s["default"].TargetActionSupport=p.TargetActionSupport,s["default"].Evented=p.Evented,s["default"].PromiseProxyMixin=p.PromiseProxyMixin,s["default"].Observable=p.Observable,s["default"].typeOf=p.typeOf,s["default"].isArray=p.isArray,s["default"].Object=p.Object,s["default"].onLoad=p.onLoad,s["default"].runLoadHooks=p.runLoadHooks,s["default"].Controller=p.Controller,s["default"].ControllerMixin=p.ControllerMixin,s["default"].Service=p.Service,s["default"]._ProxyMixin=p._ProxyMixin,s["default"].RSVP=p.RSVP,s["default"].Namespace=p.Namespace,_.empty=p.empty,_.notEmpty=p.notEmpty,_.none=p.none,_.not=p.not,_.bool=p.bool,_.match=p.match,_.equal=p.equal,_.gt=p.gt,_.gte=p.gte,_.lt=p.lt,_.lte=p.lte,_.oneWay=p.oneWay,_.reads=p.oneWay,_.readOnly=p.readOnly,_.deprecatingAlias=p.deprecatingAlias,_.and=p.and,_.or=p.or,_.any=p.any,_.sum=p.sum,_.min=p.min,_.max=p.max,_.map=p.map,_.sort=p.sort,_.setDiff=p.setDiff,_.mapBy=p.mapBy,_.filter=p.filter,_.filterBy=p.filterBy,_.uniq=p.uniq,_.uniqBy=p.uniqBy,_.union=p.union,_.intersect=p.intersect,_.collect=p.collect,Object.defineProperty(s["default"],"STRINGS",{configurable:!1,get:p.getStrings,set:p.setStrings}),Object.defineProperty(s["default"],"BOOTED",{configurable:!1,enumerable:!1,get:p.isNamespaceSearchDisabled,set:p.setNamespaceSearchDisabled}),s["default"].Component=h.Component,h.Helper.helper=h.helper,s["default"].Helper=h.Helper,s["default"].Checkbox=h.Checkbox,s["default"].TextField=h.TextField,s["default"].TextArea=h.TextArea,s["default"].LinkComponent=h.LinkComponent,n.ENV.EXTEND_PROTOTYPES.String&&(String.prototype.htmlSafe=function(){return(0,h.htmlSafe)(this)})
2572
2572
  var w=s["default"].Handlebars=s["default"].Handlebars||{},O=s["default"].HTMLBars=s["default"].HTMLBars||{},E=w.Utils=w.Utils||{}
2573
2573
  Object.defineProperty(w,"SafeString",{get:h._getSafeString}),O.template=w.template=h.template,E.escapeExpression=h.escapeExpression,p.String.htmlSafe=h.htmlSafe,p.String.isHTMLSafe=h.isHTMLSafe,Object.defineProperty(s["default"],"TEMPLATES",{get:h.getTemplates,set:h.setTemplates,configurable:!1,enumerable:!1}),e.VERSION=f["default"],s["default"].VERSION=f["default"],s.libraries.registerCoreLibrary("Ember",f["default"]),s["default"].$=d.jQuery,s["default"].ViewTargetActionSupport=d.ViewTargetActionSupport,s["default"].ViewUtils={isSimpleClick:d.isSimpleClick,getViewElement:d.getViewElement,getViewBounds:d.getViewBounds,getViewClientRects:d.getViewClientRects,getViewBoundingClientRect:d.getViewBoundingClientRect,getRootViews:d.getRootViews,getChildViews:d.getChildViews},s["default"].TextSupport=d.TextSupport,s["default"].ComponentLookup=d.ComponentLookup,s["default"].EventDispatcher=d.EventDispatcher,s["default"].Location=m.Location,s["default"].AutoLocation=m.AutoLocation,s["default"].HashLocation=m.HashLocation,s["default"].HistoryLocation=m.HistoryLocation,s["default"].NoneLocation=m.NoneLocation,s["default"].controllerFor=m.controllerFor,s["default"].generateControllerFactory=m.generateControllerFactory,s["default"].generateController=m.generateController,s["default"].RouterDSL=m.RouterDSL,s["default"].Router=m.Router,s["default"].Route=m.Route,s["default"].Application=g.Application,s["default"].ApplicationInstance=g.ApplicationInstance,s["default"].Engine=g.Engine,s["default"].EngineInstance=g.EngineInstance,s["default"].DefaultResolver=s["default"].Resolver=g.Resolver,(0,p.runLoadHooks)("Ember.Application",g.Application),s["default"].DataAdapter=y.DataAdapter,s["default"].ContainerDebugAdapter=y.ContainerDebugAdapter,(0,t.has)("ember-template-compiler")&&(0,t["default"])("ember-template-compiler"),(0,t.has)("ember-testing")&&(b=(0,t["default"])("ember-testing"),s["default"].Test=b.Test,s["default"].Test.Adapter=b.Adapter,s["default"].Test.QUnitAdapter=b.QUnitAdapter,s["default"].setupForTesting=b.setupForTesting),(0,p.runLoadHooks)("Ember"),e["default"]=s["default"],r.IS_NODE?r.module.exports=s["default"]:n.context.exports.Ember=n.context.exports.Em=s["default"]}),e("ember/version",["exports"],function(e){"use strict"
2574
- e["default"]="2.18.1"}),e("node-module",["exports"],function(e){var t="object"==typeof module&&"function"==typeof module.require
2574
+ e["default"]="2.18.2"}),e("node-module",["exports"],function(e){var t="object"==typeof module&&"function"==typeof module.require
2575
2575
  t?(e.require=module.require,e.module=module,e.IS_NODE=t):(e.require=null,e.module=null,e.IS_NODE=t)}),e("route-recognizer",["exports"],function(e){"use strict"
2576
2576
  function t(){var e=g(null)
2577
2577
  return e.__=void 0,delete e.__,e}function n(e,t,r){return function(i,o){var s=e+i
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 2.18.1
9
+ * @version 2.18.2
10
10
  */
11
11
 
12
12
  /*global process */
@@ -17125,8 +17125,11 @@ enifed('ember-glimmer/environment', ['exports', 'ember-babel', '@glimmer/runtime
17125
17125
  for (i = 0; i < destroyedComponents.length; i++) {
17126
17126
  destroyedComponents[i].destroy();
17127
17127
  }
17128
- _GlimmerEnvironment.prototype.commit.call(this);
17129
- this.inTransaction = false;
17128
+ try {
17129
+ _GlimmerEnvironment.prototype.commit.call(this);
17130
+ } finally {
17131
+ this.inTransaction = false;
17132
+ }
17130
17133
  };
17131
17134
 
17132
17135
  return Environment;
@@ -43896,7 +43899,7 @@ enifed('ember/index', ['exports', 'require', 'ember-environment', 'node-module',
43896
43899
  enifed("ember/version", ["exports"], function (exports) {
43897
43900
  "use strict";
43898
43901
 
43899
- exports.default = "2.18.1";
43902
+ exports.default = "2.18.2";
43900
43903
  });
43901
43904
  /*global enifed */
43902
43905
  enifed('node-module', ['exports'], function(_exports) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "2.18.1",
3
+ "version": "2.18.2",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -129,6 +129,9 @@
129
129
  "ember-addon": {
130
130
  "after": "ember-cli-legacy-blueprints"
131
131
  },
132
+ "publishConfig": {
133
+ "tag": "lts"
134
+ },
132
135
  "_versionPreviouslyCalculated": true,
133
- "_originalVersion": "2.18.1"
136
+ "_originalVersion": "2.18.2"
134
137
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ember-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.18.1
4
+ version: 2.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yehuda Katz