@projectcaluma/ember-distribution 1.0.0-beta.7 → 1.0.0-beta.8

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [@projectcaluma/ember-distribution-v1.0.0-beta.8](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-distribution-v1.0.0-beta.7...@projectcaluma/ember-distribution-v1.0.0-beta.8) (2022-04-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **distribution:** inject store into distribution engine ([2e00d7f](https://github.com/projectcaluma/ember-caluma/commit/2e00d7f0707b7a36e6955d91baa340ce2af7e413))
7
+
1
8
  # [@projectcaluma/ember-distribution-v1.0.0-beta.7](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-distribution-v1.0.0-beta.6...@projectcaluma/ember-distribution-v1.0.0-beta.7) (2022-04-07)
2
9
 
3
10
 
package/addon/engine.js CHANGED
@@ -11,7 +11,13 @@ export default class DistributionEngine extends Engine {
11
11
  Resolver = Resolver;
12
12
 
13
13
  dependencies = {
14
- services: ["apollo", "notification", "intl", "caluma-options"],
14
+ services: [
15
+ "apollo",
16
+ "notification",
17
+ "intl",
18
+ "caluma-options",
19
+ "store", // this is just in case that a custom form widget uses the store
20
+ ],
15
21
  };
16
22
  }
17
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectcaluma/ember-distribution",
3
- "version": "1.0.0-beta.7",
3
+ "version": "1.0.0-beta.8",
4
4
  "description": "Ember engine for the Caluma distribution module.",
5
5
  "keywords": [
6
6
  "ember-addon",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@ember/string": "^3.0.0",
22
- "@embroider/macros": "^1.5.0",
22
+ "@embroider/macros": "^1.6.0",
23
23
  "@glimmer/component": "^1.1.1",
24
24
  "@glimmer/tracking": "^1.1.1",
25
25
  "@projectcaluma/ember-core": "^11.0.0-beta.6",
@@ -49,7 +49,7 @@
49
49
  "devDependencies": {
50
50
  "@ember/optional-features": "2.0.0",
51
51
  "@ember/test-helpers": "2.7.0",
52
- "@embroider/test-setup": "1.5.0",
52
+ "@embroider/test-setup": "1.6.0",
53
53
  "@faker-js/faker": "6.1.2",
54
54
  "@projectcaluma/ember-testing": "11.0.0-beta.6",
55
55
  "broccoli-asset-rev": "3.0.0",
@@ -77,7 +77,7 @@
77
77
  "qunit": "2.18.1",
78
78
  "qunit-dom": "2.0.0",
79
79
  "sass": "1.50.0",
80
- "webpack": "5.71.0"
80
+ "webpack": "5.72.0"
81
81
  },
82
82
  "engines": {
83
83
  "node": "12.* || 14.* || >= 16"