@projectcaluma/ember-distribution 11.1.4 → 11.2.0
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.
@@ -0,0 +1,25 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
module.exports = {
|
4
|
+
normalizeEntityName() {},
|
5
|
+
|
6
|
+
afterInstall() {
|
7
|
+
/**
|
8
|
+
* Automatically install all ember addons that expose helpers / components
|
9
|
+
* used in templates of the addon itself. Other dependencies that are only
|
10
|
+
* used in JS code don't need to be installed in the host app and therefore
|
11
|
+
* don't have to be included here.
|
12
|
+
*/
|
13
|
+
return this.addAddonsToProject({
|
14
|
+
packages: [
|
15
|
+
{ name: "@ember/legacy-built-in-components" },
|
16
|
+
{ name: "@projectcaluma/ember-core" },
|
17
|
+
{ name: "@projectcaluma/ember-form" },
|
18
|
+
{ name: "@projectcaluma/ember-workflow" },
|
19
|
+
{ name: "ember-concurrency" },
|
20
|
+
{ name: "ember-engines" },
|
21
|
+
{ name: "ember-svg-jar" },
|
22
|
+
],
|
23
|
+
});
|
24
|
+
},
|
25
|
+
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@projectcaluma/ember-distribution",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.2.0",
|
4
4
|
"description": "Ember engine for the Caluma distribution module.",
|
5
5
|
"keywords": [
|
6
6
|
"ember-addon",
|
@@ -13,21 +13,17 @@
|
|
13
13
|
"test:ember": "ember test",
|
14
14
|
"test:ember-compatibility": "ember try:each"
|
15
15
|
},
|
16
|
-
"peerDependencies": {
|
17
|
-
"ember-engines": ">= 0.8",
|
18
|
-
"ember-source": "^3.28.0 || ^4.0.0"
|
19
|
-
},
|
20
16
|
"dependencies": {
|
21
17
|
"@ember/legacy-built-in-components": "^0.4.2",
|
22
18
|
"@ember/string": "^3.0.1",
|
23
19
|
"@embroider/macros": "^1.10.0",
|
24
20
|
"@glimmer/component": "^1.1.2",
|
25
21
|
"@glimmer/tracking": "^1.1.2",
|
26
|
-
"@projectcaluma/ember-core": "^11.
|
27
|
-
"@projectcaluma/ember-form": "^11.
|
28
|
-
"@projectcaluma/ember-workflow": "^11.
|
22
|
+
"@projectcaluma/ember-core": "^11.2.0",
|
23
|
+
"@projectcaluma/ember-form": "^11.2.0",
|
24
|
+
"@projectcaluma/ember-workflow": "^11.2.0",
|
29
25
|
"ember-apollo-client": "~4.0.2",
|
30
|
-
"ember-auto-import": "^2.6.
|
26
|
+
"ember-auto-import": "^2.6.3",
|
31
27
|
"ember-can": "^4.2.0",
|
32
28
|
"ember-cli-babel": "^7.26.11",
|
33
29
|
"ember-cli-htmlbars": "^6.2.0",
|
@@ -39,19 +35,19 @@
|
|
39
35
|
"ember-resources": "^5.6.4",
|
40
36
|
"ember-svg-jar": "^2.4.2",
|
41
37
|
"ember-test-selectors": "^6.0.0",
|
42
|
-
"ember-uikit": "^7.0.
|
38
|
+
"ember-uikit": "^7.0.3",
|
43
39
|
"graphql": "^15.8.0",
|
44
40
|
"graphql-tag": "^2.12.6",
|
45
41
|
"lodash.merge": "^4.6.2",
|
46
42
|
"luxon": "^3.3.0",
|
47
|
-
"tracked-toolbox": "^
|
43
|
+
"tracked-toolbox": "^2.0.0"
|
48
44
|
},
|
49
45
|
"devDependencies": {
|
50
46
|
"@ember/optional-features": "2.0.0",
|
51
47
|
"@ember/test-helpers": "2.9.3",
|
52
48
|
"@embroider/test-setup": "2.1.1",
|
53
49
|
"@faker-js/faker": "7.6.0",
|
54
|
-
"@projectcaluma/ember-testing": "11.
|
50
|
+
"@projectcaluma/ember-testing": "11.2.0",
|
55
51
|
"broccoli-asset-rev": "3.0.0",
|
56
52
|
"ember-cli": "4.11.0",
|
57
53
|
"ember-cli-code-coverage": "2.0.0",
|
@@ -61,7 +57,7 @@
|
|
61
57
|
"ember-cli-sass": "11.0.1",
|
62
58
|
"ember-cli-sri": "2.1.1",
|
63
59
|
"ember-cli-terser": "4.0.2",
|
64
|
-
"ember-engines": "0.
|
60
|
+
"ember-engines": "0.9.0",
|
65
61
|
"ember-load-initializers": "2.1.2",
|
66
62
|
"ember-qunit": "6.2.0",
|
67
63
|
"ember-resolver": "10.0.0",
|
@@ -72,9 +68,13 @@
|
|
72
68
|
"miragejs": "0.1.47",
|
73
69
|
"qunit": "2.19.4",
|
74
70
|
"qunit-dom": "2.0.0",
|
75
|
-
"sass": "1.
|
76
|
-
"uikit": "3.16.
|
77
|
-
"webpack": "5.
|
71
|
+
"sass": "1.62.0",
|
72
|
+
"uikit": "3.16.15",
|
73
|
+
"webpack": "5.80.0"
|
74
|
+
},
|
75
|
+
"peerDependencies": {
|
76
|
+
"ember-engines": "^0.9.0",
|
77
|
+
"ember-source": "^3.28.0 || ^4.0.0"
|
78
78
|
},
|
79
79
|
"engines": {
|
80
80
|
"node": "14.* || 16.* || >= 18"
|