ember-repl 2.0.13 → 2.0.17
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/CHANGELOG.md +28 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [2.0.17](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.16...v2.0.17) (2022-01-19)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update embroider monorepo to v1 ([8328376](https://github.com/NullVoxPopuli/ember-repl/commit/832837662f0fdb11e3a9d2546336c68ded0ecffc))
|
|
7
|
+
|
|
8
|
+
## [2.0.16](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.15...v2.0.16) (2022-01-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency ember-auto-import to v2.3.0 ([1cbafd6](https://github.com/NullVoxPopuli/ember-repl/commit/1cbafd6b1f7f8d3ef11bd840c613dd999bf30a7e))
|
|
14
|
+
|
|
15
|
+
## [2.0.15](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.14...v2.0.15) (2022-01-14)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **deps:** update embroider monorepo to ^0.50.2 ([e64a649](https://github.com/NullVoxPopuli/ember-repl/commit/e64a64977aef6d075890823dd0b6eb5c26252dfb))
|
|
21
|
+
|
|
22
|
+
## [2.0.14](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.13...v2.0.14) (2022-01-13)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **deps:** update embroider monorepo to ^0.50.1 ([f7fb9c5](https://github.com/NullVoxPopuli/ember-repl/commit/f7fb9c528d3b80282a864c10b7551923bf8af397))
|
|
28
|
+
|
|
1
29
|
## [2.0.13](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.12...v2.0.13) (2022-01-12)
|
|
2
30
|
|
|
3
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-repl",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"description": "Addon for enabling REPL and Playground creation with Ember/Glimmer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/standalone": "^7.16.9",
|
|
32
|
-
"@embroider/macros": "^0.
|
|
32
|
+
"@embroider/macros": "^1.0.0",
|
|
33
33
|
"@glimmer/component": "^1.0.4",
|
|
34
34
|
"@glimmer/tracking": "^1.0.4",
|
|
35
35
|
"babel-plugin-htmlbars-inline-precompile": "^5.3.1",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"broccoli-funnel": "^3.0.8",
|
|
38
38
|
"broccoli-merge-trees": "^4.2.0",
|
|
39
39
|
"common-tags": "^1.8.2",
|
|
40
|
-
"ember-auto-import": "2.
|
|
40
|
+
"ember-auto-import": "2.3.0",
|
|
41
41
|
"ember-cli-babel": "^7.26.11",
|
|
42
42
|
"ember-cli-htmlbars": "^6.0.1",
|
|
43
43
|
"ember-cli-typescript": "^4.2.1",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"@ember/optional-features": "^2.0.0",
|
|
52
52
|
"@ember/test-helpers": "^2.6.0",
|
|
53
53
|
"@ember/test-waiters": "^3.0.1",
|
|
54
|
-
"@embroider/test-setup": "^0.
|
|
54
|
+
"@embroider/test-setup": "^1.0.0",
|
|
55
55
|
"@glimmer/interfaces": "^0.83.1",
|
|
56
56
|
"@glimmer/reference": "^0.83.1",
|
|
57
57
|
"@glimmer/util": "^0.83.1",
|
|
58
|
-
"@nullvoxpopuli/eslint-configs": "^2.1.
|
|
58
|
+
"@nullvoxpopuli/eslint-configs": "^2.1.18",
|
|
59
59
|
"@semantic-release/changelog": "^6.0.1",
|
|
60
60
|
"@semantic-release/git": "^10.0.1",
|
|
61
61
|
"@types/babel__core": "^7.1.18",
|
|
@@ -117,9 +117,9 @@
|
|
|
117
117
|
"prettier": "^2.5.1",
|
|
118
118
|
"qunit": "^2.17.2",
|
|
119
119
|
"qunit-dom": "^2.0.0",
|
|
120
|
-
"semantic-release": "^
|
|
120
|
+
"semantic-release": "^19.0.2",
|
|
121
121
|
"typescript": "^4.5.4",
|
|
122
|
-
"webpack": "^5.
|
|
122
|
+
"webpack": "^5.66.0"
|
|
123
123
|
},
|
|
124
124
|
"release": {
|
|
125
125
|
"branches": [
|