@ascua/core 0.3.7 → 0.3.8
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.
- package/index.js +5 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -11,6 +11,11 @@ module.exports = {
|
|
|
11
11
|
// Don't store app config in meta tag
|
|
12
12
|
app.options.storeConfigInMeta = false;
|
|
13
13
|
|
|
14
|
+
// Ensure ember-fetch configuration is optimised
|
|
15
|
+
app.options['ember-fetch'] = app.options['ember-fetch'] || {};
|
|
16
|
+
app.options['ember-fetch'].preferNative = true;
|
|
17
|
+
app.options['ember-fetch'].alwaysIncludePolyfill = false;
|
|
18
|
+
|
|
14
19
|
// Ensure correct file types are converted
|
|
15
20
|
app.options.fingerprint = app.options.fingerprint || {};
|
|
16
21
|
app.options.fingerprint.exclude = app.options.fingerprint.exclude || [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascua/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "Small description for @ascua/core goes here",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "bec02f4cc22f0a2b67a4f307683da15e112f357e"
|
|
29
29
|
}
|