ember-source 4.8.0-beta.2 → 4.8.0-beta.3

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.8.0-beta.2
8
+ * @version 4.8.0-beta.3
9
9
  */
@@ -1 +1 @@
1
- export default "4.8.0-beta.2";
1
+ export default "4.8.0-beta.3";
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.8.0-beta.2"
6
+ "version": "4.8.0-beta.3"
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.8.0-beta.2",
3
+ "version": "4.8.0-beta.3",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -169,13 +169,16 @@
169
169
  "after": "ember-cli-legacy-blueprints"
170
170
  },
171
171
  "typesVersions": {
172
- "*": {
172
+ "types/*": {
173
+ "stable": [
174
+ "./types/stable"
175
+ ],
173
176
  "preview": [
174
177
  "./types/preview"
175
178
  ]
176
179
  }
177
180
  },
178
- "_originalVersion": "4.8.0-beta.2",
181
+ "_originalVersion": "4.8.0-beta.3",
179
182
  "_versionPreviouslyCalculated": true,
180
183
  "publishConfig": {
181
184
  "tag": "beta"
@@ -0,0 +1,12 @@
1
+ // Future home of stable Ember types! This file currently does nothing, but in
2
+ // the months ahead will look more and more like the `/types/preview/index.d.ts`
3
+ // while that one empties. This is just here so that someone who writes the
4
+ // import we recommend--
5
+ //
6
+ // ```ts
7
+ // import 'ember-source/types';
8
+ // import 'ember-source/types/preview';
9
+ // ```
10
+ //
11
+ // --will not get warnings from TypeScript while we wait on putting actual
12
+ // things here!