ember-source 4.9.0-beta.2 → 4.10.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,5 +5,5 @@
5
5
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
6
6
  * @license Licensed under MIT license
7
7
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
8
- * @version 4.9.0-beta.2
8
+ * @version 4.10.0-alpha.2
9
9
  */
@@ -10,7 +10,6 @@ import { DEBUG } from '@glimmer/env';
10
10
  import { getCustomTagFor } from '@glimmer/manager';
11
11
  import { _WeakSet } from '@glimmer/util';
12
12
  import EmberError from '@ember/error';
13
- import { EMBER_LIBRARIES_ISREGISTERED } from '@ember/canary-features';
14
13
  import VERSION from 'ember/version';
15
14
  import { getOwner } from '@ember/-internals/owner';
16
15
 
@@ -2194,12 +2193,6 @@ class Libraries {
2194
2193
 
2195
2194
  }
2196
2195
 
2197
- if (EMBER_LIBRARIES_ISREGISTERED) {
2198
- Libraries.prototype.isRegistered = function (name) {
2199
- return Boolean(this._getLibraryByName(name));
2200
- };
2201
- }
2202
-
2203
2196
  if (DEBUG) {
2204
2197
  Libraries.prototype.logVersions = function () {
2205
2198
  let libs = this._registry;
@@ -2,7 +2,6 @@
2
2
 
3
3
  /* global console */
4
4
  import { ENV } from '@ember/-internals/environment';
5
- import { EMBER_IMPROVED_INSTRUMENTATION } from '@ember/canary-features';
6
5
  import { assert } from '@ember/debug';
7
6
  /**
8
7
  @module @ember/instrumentation
@@ -119,7 +118,9 @@ export function instrument(name, p1, p2, p3) {
119
118
  }
120
119
  let flaggedInstrument;
121
120
 
122
- if (EMBER_IMPROVED_INSTRUMENTATION) {
121
+ if (false
122
+ /* EMBER_IMPROVED_INSTRUMENTATION */
123
+ ) {
123
124
  flaggedInstrument = instrument;
124
125
  } else {
125
126
  flaggedInstrument = function instrument(_name, _payload, callback) {
@@ -1 +1 @@
1
- export default "4.9.0-beta.2";
1
+ export default "4.10.0-alpha.2";
package/docs/data.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "The Ember API",
4
4
  "description": "The Ember API: a framework for building ambitious web applications",
5
5
  "url": "https://emberjs.com/",
6
- "version": "4.9.0-beta.2"
6
+ "version": "4.10.0-alpha.2"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "4.9.0-beta.2",
3
+ "version": "4.10.0-alpha.2",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -179,9 +179,9 @@
179
179
  ]
180
180
  }
181
181
  },
182
- "_originalVersion": "4.9.0-beta.2",
182
+ "_originalVersion": "4.10.0-alpha.2",
183
183
  "_versionPreviouslyCalculated": true,
184
184
  "publishConfig": {
185
- "tag": "beta"
185
+ "tag": "alpha"
186
186
  }
187
187
  }