ember-repl 2.0.63 → 3.0.0-beta.1

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.
Files changed (108) hide show
  1. package/README.md +200 -35
  2. package/addon-main.cjs +5 -0
  3. package/dist/browser/cjs/eval.d.ts +10 -0
  4. package/dist/browser/cjs/eval.d.ts.map +1 -0
  5. package/dist/browser/cjs/eval.js +22 -0
  6. package/dist/browser/cjs/eval.js.map +1 -0
  7. package/dist/browser/cjs/index.d.ts +7 -0
  8. package/dist/browser/cjs/index.js +43 -0
  9. package/dist/browser/cjs/index.js.map +1 -0
  10. package/dist/browser/compile/formats.d.ts +15 -0
  11. package/dist/browser/compile/formats.js +169 -0
  12. package/dist/browser/compile/formats.js.map +1 -0
  13. package/dist/browser/compile/index.d.ts +32 -0
  14. package/dist/browser/compile/index.js +90 -0
  15. package/dist/browser/compile/index.js.map +1 -0
  16. package/dist/browser/compile/markdown-to-ember.d.ts +18 -0
  17. package/dist/browser/compile/markdown-to-ember.js +237 -0
  18. package/dist/browser/compile/markdown-to-ember.js.map +1 -0
  19. package/dist/browser/compile/types.d.ts +7 -0
  20. package/dist/browser/compile/types.js +2 -0
  21. package/dist/browser/compile/types.js.map +1 -0
  22. package/dist/browser/esm/index.d.ts +8 -0
  23. package/dist/browser/esm/index.js +67 -0
  24. package/dist/browser/esm/index.js.map +1 -0
  25. package/dist/browser/eti/babel-plugin.d.ts +54 -0
  26. package/dist/browser/eti/babel-plugin.js +95 -0
  27. package/dist/browser/eti/babel-plugin.js.map +1 -0
  28. package/dist/browser/eti/debug.d.ts +2 -0
  29. package/dist/browser/eti/debug.js +9 -0
  30. package/dist/browser/eti/debug.js.map +1 -0
  31. package/dist/browser/eti/parse-templates.d.ts +56 -0
  32. package/dist/browser/eti/parse-templates.js +181 -0
  33. package/dist/browser/eti/parse-templates.js.map +1 -0
  34. package/dist/browser/eti/preprocess.d.ts +57 -0
  35. package/dist/browser/eti/preprocess.js +270 -0
  36. package/dist/browser/eti/preprocess.js.map +1 -0
  37. package/dist/browser/eti/template-tag-transform.d.ts +15 -0
  38. package/dist/browser/eti/template-tag-transform.js +46 -0
  39. package/dist/browser/eti/template-tag-transform.js.map +1 -0
  40. package/dist/browser/eti/util.d.ts +14 -0
  41. package/dist/browser/eti/util.js +39 -0
  42. package/dist/browser/eti/util.js.map +1 -0
  43. package/dist/browser/gjs.d.ts +4 -0
  44. package/dist/browser/gjs.js +40 -0
  45. package/dist/browser/gjs.js.map +1 -0
  46. package/{hbs.d.ts → dist/browser/hbs.d.ts} +7 -7
  47. package/dist/browser/hbs.js +91 -0
  48. package/dist/browser/hbs.js.map +1 -0
  49. package/dist/browser/index.d.ts +6 -0
  50. package/dist/browser/index.js +6 -0
  51. package/dist/browser/index.js.map +1 -0
  52. package/{js.d.ts → dist/browser/js.d.ts} +3 -6
  53. package/dist/browser/js.js +38 -0
  54. package/dist/browser/js.js.map +1 -0
  55. package/{known-modules.d.ts → dist/browser/known-modules.d.ts} +6 -5
  56. package/dist/browser/known-modules.js +46 -0
  57. package/dist/browser/known-modules.js.map +1 -0
  58. package/dist/browser/types.d.ts +21 -0
  59. package/dist/browser/types.js +2 -0
  60. package/dist/browser/types.js.map +1 -0
  61. package/{utils.d.ts → dist/browser/utils.d.ts} +8 -3
  62. package/dist/browser/utils.js +46 -0
  63. package/dist/browser/utils.js.map +1 -0
  64. package/dist/build/ember-cli.cjs +36 -0
  65. package/dist/test-support/index.d.ts +2 -0
  66. package/dist/test-support/index.js +8 -0
  67. package/dist/test-support/index.js.map +1 -0
  68. package/package.json +122 -125
  69. package/{addon → src/browser}/cjs/eval.ts +9 -5
  70. package/src/browser/cjs/index.ts +44 -0
  71. package/src/browser/compile/formats.ts +168 -0
  72. package/src/browser/compile/index.ts +131 -0
  73. package/src/browser/compile/markdown-to-ember.ts +318 -0
  74. package/src/browser/compile/types.ts +7 -0
  75. package/src/browser/esm/index.ts +80 -0
  76. package/src/browser/eti/babel-plugin.ts +105 -0
  77. package/src/browser/eti/debug.ts +7 -0
  78. package/src/browser/eti/parse-templates.ts +284 -0
  79. package/src/browser/eti/preprocess.ts +187 -0
  80. package/src/browser/eti/template-tag-transform.ts +100 -0
  81. package/src/browser/eti/util.ts +72 -0
  82. package/src/browser/gjs.ts +59 -0
  83. package/{addon → src/browser}/hbs.ts +24 -12
  84. package/{addon → src/browser}/index.ts +1 -0
  85. package/{addon → src/browser}/js.ts +6 -2
  86. package/{addon → src/browser}/known-modules.ts +4 -2
  87. package/{addon → src/browser}/types.ts +6 -1
  88. package/{addon → src/browser}/utils.ts +6 -2
  89. package/src/build/ember-cli.cjs +36 -0
  90. package/src/test-support/index.ts +5 -0
  91. package/.github/renovate.json5 +0 -93
  92. package/.github/workflows/ci.yml +0 -120
  93. package/.github/workflows/lint.yml +0 -88
  94. package/.github/workflows/types.yml +0 -30
  95. package/CHANGELOG.md +0 -745
  96. package/addon/cjs/index.ts +0 -100
  97. package/addon/esm/index.ts +0 -131
  98. package/cjs/eval.d.ts +0 -8
  99. package/cjs/index.d.ts +0 -10
  100. package/config/environment.js +0 -5
  101. package/esm/index.d.ts +0 -11
  102. package/index.d.ts +0 -5
  103. package/index.js +0 -105
  104. package/tsconfig.json +0 -56
  105. package/types/dummy/index.d.ts +0 -1
  106. package/types/global.d.ts +0 -43
  107. package/types/overrides.d.ts +0 -18
  108. package/types.d.ts +0 -15
package/CHANGELOG.md DELETED
@@ -1,745 +0,0 @@
1
- ## [2.0.63](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.62...v2.0.63) (2022-08-23)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * **deps:** update dependency @babel/standalone to ^7.18.13 ([47782b6](https://github.com/NullVoxPopuli/ember-repl/commit/47782b679fa77e05aab535cadcf17160a570592f))
7
-
8
- ## [2.0.62](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.61...v2.0.62) (2022-08-05)
9
-
10
-
11
- ### Bug Fixes
12
-
13
- * **deps:** update dependency @babel/standalone to ^7.18.12 ([a8fa751](https://github.com/NullVoxPopuli/ember-repl/commit/a8fa751fa1f894462d56ae07123bac0c7c63975b))
14
-
15
- ## [2.0.61](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.60...v2.0.61) (2022-08-02)
16
-
17
-
18
- ### Bug Fixes
19
-
20
- * **deps:** update dependency @babel/standalone to ^7.18.10 ([1eb14f3](https://github.com/NullVoxPopuli/ember-repl/commit/1eb14f3b0ccb2a0679fba87e419e8174f00e07c8))
21
-
22
- ## [2.0.60](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.59...v2.0.60) (2022-07-18)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * **deps:** update dependency @babel/standalone to ^7.18.9 ([2d23b82](https://github.com/NullVoxPopuli/ember-repl/commit/2d23b82c5306c6548afeab4a52f6154df5d658b4))
28
-
29
- ## [2.0.59](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.58...v2.0.59) (2022-07-08)
30
-
31
-
32
- ### Bug Fixes
33
-
34
- * **deps:** update dependency @babel/standalone to ^7.18.8 ([ba01580](https://github.com/NullVoxPopuli/ember-repl/commit/ba0158023c0da95e12f3388336dadfb59de7c2d1))
35
-
36
- ## [2.0.58](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.57...v2.0.58) (2022-07-04)
37
-
38
-
39
- ### Bug Fixes
40
-
41
- * **deps:** update embroider monorepo to ^1.8.3 ([ef4be4e](https://github.com/NullVoxPopuli/ember-repl/commit/ef4be4e7391b9d266551ae4d7e1fc395909dd299))
42
-
43
- ## [2.0.57](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.56...v2.0.57) (2022-07-04)
44
-
45
-
46
- ### Bug Fixes
47
-
48
- * **deps:** update dependency ember-cli-htmlbars to ^6.1.0 ([953c0c1](https://github.com/NullVoxPopuli/ember-repl/commit/953c0c15304301e8ed31da5b7320f60a4e835b43))
49
-
50
- ## [2.0.56](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.55...v2.0.56) (2022-07-02)
51
-
52
-
53
- ### Bug Fixes
54
-
55
- * **deps:** update embroider monorepo to ^1.8.1 ([56c45ec](https://github.com/NullVoxPopuli/ember-repl/commit/56c45ec04094362196f329d978bbea4e494efb46))
56
-
57
- ## [2.0.55](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.54...v2.0.55) (2022-06-29)
58
-
59
-
60
- ### Bug Fixes
61
-
62
- * **deps:** update dependency @babel/standalone to ^7.18.7 ([b97a3f1](https://github.com/NullVoxPopuli/ember-repl/commit/b97a3f11edfcb4cc82335387c0442f0a27dd3b88))
63
-
64
- ## [2.0.54](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.53...v2.0.54) (2022-06-28)
65
-
66
-
67
- ### Bug Fixes
68
-
69
- * **deps:** update dependency @babel/standalone to ^7.18.6 ([2b5d6d8](https://github.com/NullVoxPopuli/ember-repl/commit/2b5d6d8e4b78a2b7ecdbc326e7736ed1c6c4e9ac))
70
-
71
- ## [2.0.53](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.52...v2.0.53) (2022-06-13)
72
-
73
-
74
- ### Bug Fixes
75
-
76
- * **deps:** update dependency @babel/standalone to ^7.18.5 ([fb6e903](https://github.com/NullVoxPopuli/ember-repl/commit/fb6e903e3ceda36a536b38d604b1391bf503792f))
77
-
78
- ## [2.0.52](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.51...v2.0.52) (2022-06-10)
79
-
80
-
81
- ### Bug Fixes
82
-
83
- * **deps:** update embroider monorepo to ^1.8.0 ([9321f36](https://github.com/NullVoxPopuli/ember-repl/commit/9321f3600dc97759217f80943d03e464db525da4))
84
-
85
- ## [2.0.51](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.50...v2.0.51) (2022-05-30)
86
-
87
-
88
- ### Bug Fixes
89
-
90
- * **deps:** update dependency @babel/standalone to ^7.18.4 ([d119d4c](https://github.com/NullVoxPopuli/ember-repl/commit/d119d4c562c0c9187ca272e586eb3f4e6f6b981a))
91
-
92
- ## [2.0.50](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.49...v2.0.50) (2022-05-25)
93
-
94
-
95
- ### Bug Fixes
96
-
97
- * **deps:** update dependency @babel/standalone to ^7.18.3 ([84d6123](https://github.com/NullVoxPopuli/ember-repl/commit/84d61230cd9f82f095ec03283121035e301cd6d4))
98
-
99
- ## [2.0.49](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.48...v2.0.49) (2022-05-25)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * **deps:** update dependency @babel/standalone to ^7.18.2 ([7e59178](https://github.com/NullVoxPopuli/ember-repl/commit/7e591785afa3984800b00eb6b940584809368777))
105
-
106
- ## [2.0.48](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.47...v2.0.48) (2022-05-24)
107
-
108
-
109
- ### Bug Fixes
110
-
111
- * **deps:** update embroider monorepo to ^1.7.1 ([0264c7b](https://github.com/NullVoxPopuli/ember-repl/commit/0264c7b75fc0195a69143e952805d6709a73e1c3))
112
-
113
- ## [2.0.47](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.46...v2.0.47) (2022-05-23)
114
-
115
-
116
- ### Bug Fixes
117
-
118
- * **deps:** update embroider monorepo to ^1.7.0 ([4e57c24](https://github.com/NullVoxPopuli/ember-repl/commit/4e57c24e5c9c1f9b95ff27cd3f7685e4479d370a))
119
-
120
- ## [2.0.46](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.45...v2.0.46) (2022-05-22)
121
-
122
-
123
- ### Bug Fixes
124
-
125
- * **deps:** update dependency ember-auto-import to v2.4.2 ([b458903](https://github.com/NullVoxPopuli/ember-repl/commit/b458903b53e5aacc275beeb8bc2341afeca522fc))
126
-
127
- ## [2.0.45](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.44...v2.0.45) (2022-05-20)
128
-
129
-
130
- ### Bug Fixes
131
-
132
- * **deps:** update dependency @babel/standalone to ^7.18.1 ([eebb0f4](https://github.com/NullVoxPopuli/ember-repl/commit/eebb0f485eb83cb5eeb85ea69b1d83178a19a658))
133
-
134
- ## [2.0.44](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.43...v2.0.44) (2022-05-17)
135
-
136
-
137
- ### Bug Fixes
138
-
139
- * **deps:** update dependency @babel/standalone to ^7.17.12 ([a7b66d8](https://github.com/NullVoxPopuli/ember-repl/commit/a7b66d8ff1b572975f7ce78e4e499cfa04308f12))
140
-
141
- ## [2.0.43](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.42...v2.0.43) (2022-04-30)
142
-
143
-
144
- ### Bug Fixes
145
-
146
- * **deps:** update dependency @babel/standalone to ^7.17.11 ([1c3e505](https://github.com/NullVoxPopuli/ember-repl/commit/1c3e505302fff611e43f9f6b65a6af4ad0f1fc86))
147
-
148
- ## [2.0.42](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.41...v2.0.42) (2022-04-29)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * **deps:** update dependency @babel/standalone to ^7.17.10 ([7aa0b74](https://github.com/NullVoxPopuli/ember-repl/commit/7aa0b74b3c64bf02f07c879b1d3408e27166876b))
154
-
155
- ## [2.0.41](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.40...v2.0.41) (2022-04-21)
156
-
157
-
158
- ### Bug Fixes
159
-
160
- * **deps:** update dependency ember-cli-typescript to ^5.1.0 ([a0bff08](https://github.com/NullVoxPopuli/ember-repl/commit/a0bff0823d2afd898774841b8e79db3f46bb77ef))
161
-
162
- ## [2.0.40](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.39...v2.0.40) (2022-04-12)
163
-
164
-
165
- ### Bug Fixes
166
-
167
- * **deps:** update framework dependencies to ^1.1.2 ([9e7b65c](https://github.com/NullVoxPopuli/ember-repl/commit/9e7b65c357347bbaa6bdd9cfd0b846c23d6a4d73))
168
-
169
- ## [2.0.39](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.38...v2.0.39) (2022-04-08)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * **deps:** update embroider monorepo to ^1.6.0 ([f47265b](https://github.com/NullVoxPopuli/ember-repl/commit/f47265b92fde8a776259befed20d9fab83377528))
175
-
176
- ## [2.0.38](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.37...v2.0.38) (2022-04-06)
177
-
178
-
179
- ### Bug Fixes
180
-
181
- * **deps:** update dependency @babel/standalone to ^7.17.9 ([be2274c](https://github.com/NullVoxPopuli/ember-repl/commit/be2274c8c2741e1676f4d62430a747d03dd5b735))
182
-
183
- ## [2.0.37](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.36...v2.0.37) (2022-04-01)
184
-
185
-
186
- ### Bug Fixes
187
-
188
- * **deps:** update framework dependencies to ^1.1.1 ([3489552](https://github.com/NullVoxPopuli/ember-repl/commit/34895521b42340444e0b09b4c850cac07a1062cd))
189
-
190
- ## [2.0.36](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.35...v2.0.36) (2022-03-31)
191
-
192
-
193
- ### Bug Fixes
194
-
195
- * **deps:** update framework dependencies to ^1.1.0 ([3fe38db](https://github.com/NullVoxPopuli/ember-repl/commit/3fe38db0f73a2574379164cab8dacf077dc1e65f))
196
-
197
- ## [2.0.35](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.34...v2.0.35) (2022-03-23)
198
-
199
-
200
- ### Bug Fixes
201
-
202
- * **deps:** update dependency ember-auto-import to v2.4.1 ([7ee520f](https://github.com/NullVoxPopuli/ember-repl/commit/7ee520f31b0fdf4aa169e810a87d08d9d8d1f18a))
203
-
204
- ## [2.0.34](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.33...v2.0.34) (2022-03-19)
205
-
206
-
207
- ### Bug Fixes
208
-
209
- * **deps:** update dependency @babel/standalone to ^7.17.8 ([177e151](https://github.com/NullVoxPopuli/ember-repl/commit/177e1511ce704b3c90a523325a1244c41b67e3f7))
210
-
211
- ## [2.0.33](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.32...v2.0.33) (2022-03-14)
212
-
213
-
214
- ### Bug Fixes
215
-
216
- * **deps:** update dependency @babel/standalone to ^7.17.7 ([9b7d5ad](https://github.com/NullVoxPopuli/ember-repl/commit/9b7d5ad477ac7779bdc8304205945b030199cf58))
217
-
218
- ## [2.0.32](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.31...v2.0.32) (2022-03-08)
219
-
220
-
221
- ### Bug Fixes
222
-
223
- * **deps:** update embroider monorepo to ^1.5.0 ([3126e22](https://github.com/NullVoxPopuli/ember-repl/commit/3126e22edc2be2713981e659db95dbdc43f124d7))
224
-
225
- ## [2.0.31](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.30...v2.0.31) (2022-03-07)
226
-
227
-
228
- ### Bug Fixes
229
-
230
- * **deps:** update embroider monorepo to ^1.4.0 ([7175e9e](https://github.com/NullVoxPopuli/ember-repl/commit/7175e9e4bb1b51d2cb1d994c704e7696321553f6))
231
-
232
- ## [2.0.30](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.29...v2.0.30) (2022-03-04)
233
-
234
-
235
- ### Bug Fixes
236
-
237
- * **deps:** update embroider monorepo to ^1.3.0 ([2073994](https://github.com/NullVoxPopuli/ember-repl/commit/20739945e01adbd2e1183c0c075d10a0be3a5d76))
238
-
239
- ## [2.0.29](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.28...v2.0.29) (2022-02-22)
240
-
241
-
242
- ### Bug Fixes
243
-
244
- * **deps:** update dependency @babel/standalone to ^7.17.6 ([bda063a](https://github.com/NullVoxPopuli/ember-repl/commit/bda063a5bf4bf7f89b4f906d2205d6146bebb76e))
245
-
246
- ## [2.0.28](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.27...v2.0.28) (2022-02-17)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * **deps:** update dependency @babel/standalone to ^7.17.5 ([335115e](https://github.com/NullVoxPopuli/ember-repl/commit/335115e53ac60e81a3fb6a5fb116b198d854fe25))
252
-
253
- ## [2.0.27](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.26...v2.0.27) (2022-02-16)
254
-
255
-
256
- ### Bug Fixes
257
-
258
- * **deps:** update dependency @babel/standalone to ^7.17.4 ([8fc30f9](https://github.com/NullVoxPopuli/ember-repl/commit/8fc30f90ae3bc5b6275cfa3653d50dc849b18865))
259
-
260
- ## [2.0.26](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.25...v2.0.26) (2022-02-15)
261
-
262
-
263
- ### Bug Fixes
264
-
265
- * **deps:** update dependency @babel/standalone to ^7.17.3 ([d7ef131](https://github.com/NullVoxPopuli/ember-repl/commit/d7ef131a5643eca8f03770ca91315911f42b8308))
266
-
267
- ## [2.0.25](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.24...v2.0.25) (2022-02-13)
268
-
269
-
270
- ### Bug Fixes
271
-
272
- * **types:** update type-dependencies ([91b3d9b](https://github.com/NullVoxPopuli/ember-repl/commit/91b3d9be92ab436aa8fb3227339f72594d3492d0))
273
-
274
- ## [2.0.24](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.23...v2.0.24) (2022-02-04)
275
-
276
-
277
- ### Bug Fixes
278
-
279
- * **deps:** update dependency ember-cli-typescript to v5 ([8625108](https://github.com/NullVoxPopuli/ember-repl/commit/8625108c5f4aab7362061ab372e3afb9e7a29938))
280
-
281
- ## [2.0.23](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.22...v2.0.23) (2022-02-03)
282
-
283
-
284
- ### Bug Fixes
285
-
286
- * **deps:** update dependency @babel/standalone to ^7.17.1 ([117113f](https://github.com/NullVoxPopuli/ember-repl/commit/117113f49e663c7e6c97f3c8bc18576cd6cd253a))
287
-
288
- ## [2.0.22](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.21...v2.0.22) (2022-02-03)
289
-
290
-
291
- ### Bug Fixes
292
-
293
- * **deps:** update dependency @babel/standalone to ^7.17.0 ([c4fe077](https://github.com/NullVoxPopuli/ember-repl/commit/c4fe07719de120ced79a8aba229fc8e62c170e34))
294
-
295
- ## [2.0.21](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.20...v2.0.21) (2022-01-22)
296
-
297
-
298
- ### Bug Fixes
299
-
300
- * **deps:** update dependency @babel/standalone to ^7.16.12 ([c1d76d2](https://github.com/NullVoxPopuli/ember-repl/commit/c1d76d2def25666b61d76b736335e3e062d7e05b))
301
-
302
- ## [2.0.20](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.19...v2.0.20) (2022-01-21)
303
-
304
-
305
- ### Bug Fixes
306
-
307
- * **deps:** update dependency ember-auto-import to v2.4.0 ([bf6c7c1](https://github.com/NullVoxPopuli/ember-repl/commit/bf6c7c16a464155e39375bb6de50d4de47cb9242))
308
-
309
- ## [2.0.19](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.18...v2.0.19) (2022-01-20)
310
-
311
-
312
- ### Bug Fixes
313
-
314
- * **deps:** update dependency @babel/standalone to ^7.16.11 ([1e2c5ad](https://github.com/NullVoxPopuli/ember-repl/commit/1e2c5ad9805b51066768d22db87903696c6d4e3e))
315
-
316
- ## [2.0.18](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.17...v2.0.18) (2022-01-19)
317
-
318
-
319
- ### Bug Fixes
320
-
321
- * **deps:** update dependency @babel/standalone to ^7.16.10 ([6288619](https://github.com/NullVoxPopuli/ember-repl/commit/62886199d7daf8134033364c204e2a55e6df2c64))
322
-
323
- ## [2.0.17](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.16...v2.0.17) (2022-01-19)
324
-
325
-
326
- ### Bug Fixes
327
-
328
- * **deps:** update embroider monorepo to v1 ([8328376](https://github.com/NullVoxPopuli/ember-repl/commit/832837662f0fdb11e3a9d2546336c68ded0ecffc))
329
-
330
- ## [2.0.16](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.15...v2.0.16) (2022-01-15)
331
-
332
-
333
- ### Bug Fixes
334
-
335
- * **deps:** update dependency ember-auto-import to v2.3.0 ([1cbafd6](https://github.com/NullVoxPopuli/ember-repl/commit/1cbafd6b1f7f8d3ef11bd840c613dd999bf30a7e))
336
-
337
- ## [2.0.15](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.14...v2.0.15) (2022-01-14)
338
-
339
-
340
- ### Bug Fixes
341
-
342
- * **deps:** update embroider monorepo to ^0.50.2 ([e64a649](https://github.com/NullVoxPopuli/ember-repl/commit/e64a64977aef6d075890823dd0b6eb5c26252dfb))
343
-
344
- ## [2.0.14](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.13...v2.0.14) (2022-01-13)
345
-
346
-
347
- ### Bug Fixes
348
-
349
- * **deps:** update embroider monorepo to ^0.50.1 ([f7fb9c5](https://github.com/NullVoxPopuli/ember-repl/commit/f7fb9c528d3b80282a864c10b7551923bf8af397))
350
-
351
- ## [2.0.13](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.12...v2.0.13) (2022-01-12)
352
-
353
-
354
- ### Bug Fixes
355
-
356
- * **deps:** update dependency @babel/standalone to ^7.16.9 ([e388182](https://github.com/NullVoxPopuli/ember-repl/commit/e3881829e71055e75e6acce7ba9072b3918718e9))
357
-
358
- ## [2.0.12](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.11...v2.0.12) (2022-01-11)
359
-
360
-
361
- ### Bug Fixes
362
-
363
- * **deps:** update dependency @babel/standalone to ^7.16.8 ([2fffcd8](https://github.com/NullVoxPopuli/ember-repl/commit/2fffcd8532048fc9f2040eaa99f9b218b277c327))
364
-
365
- ## [2.0.11](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.10...v2.0.11) (2022-01-08)
366
-
367
-
368
- ### Bug Fixes
369
-
370
- * **deps:** update embroider monorepo to ^0.50.0 ([bc697ef](https://github.com/NullVoxPopuli/ember-repl/commit/bc697ef5831b1c11bbb1caa19d55670dbc0abf06))
371
-
372
- ## [2.0.10](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.9...v2.0.10) (2021-12-31)
373
-
374
-
375
- ### Bug Fixes
376
-
377
- * **deps:** update dependency @babel/standalone to ^7.16.7 ([76ed36b](https://github.com/NullVoxPopuli/ember-repl/commit/76ed36b89648f2311d88a57d88e188dbb123c51e))
378
-
379
- ## [2.0.9](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.8...v2.0.9) (2021-12-22)
380
-
381
-
382
- ### Bug Fixes
383
-
384
- * **deps:** update dependency ember-cli-babel to ^7.26.11 ([fb572e5](https://github.com/NullVoxPopuli/ember-repl/commit/fb572e5bd40221286f69182831cab706343362d4))
385
-
386
- ## [2.0.8](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.7...v2.0.8) (2021-12-21)
387
-
388
-
389
- ### Bug Fixes
390
-
391
- * **deps:** update embroider monorepo to ^0.49.0 ([10890cb](https://github.com/NullVoxPopuli/ember-repl/commit/10890cbcd38287f6f0ace27e64b7c226bfee4add))
392
-
393
- ## [2.0.7](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.6...v2.0.7) (2021-12-17)
394
-
395
-
396
- ### Bug Fixes
397
-
398
- * **deps:** update dependency ember-cli-babel to ^7.26.10 ([9b490b5](https://github.com/NullVoxPopuli/ember-repl/commit/9b490b539fcd6ba63ec66585764769f53f114633))
399
-
400
- ## [2.0.6](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.5...v2.0.6) (2021-12-16)
401
-
402
-
403
- ### Bug Fixes
404
-
405
- * **deps:** update dependency ember-cli-babel to ^7.26.8 ([35a7072](https://github.com/NullVoxPopuli/ember-repl/commit/35a70723add81efcbc83218bd7b3a7b45e9e1d37))
406
-
407
- ## [2.0.5](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.4...v2.0.5) (2021-12-15)
408
-
409
-
410
- ### Bug Fixes
411
-
412
- * **deps:** update dependency @babel/standalone to ^7.16.6 ([0eb5809](https://github.com/NullVoxPopuli/ember-repl/commit/0eb58098ed704c9bcf9da9302f757bbd588e2ed7))
413
-
414
- ## [2.0.4](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.3...v2.0.4) (2021-12-14)
415
-
416
-
417
- ### Bug Fixes
418
-
419
- * **deps:** update dependency @babel/standalone to ^7.16.5 ([6eb2ee1](https://github.com/NullVoxPopuli/ember-repl/commit/6eb2ee1c9473918c7acee01eabd726a019a71d7b))
420
-
421
- ## [2.0.3](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.2...v2.0.3) (2021-12-09)
422
-
423
-
424
- ### Bug Fixes
425
-
426
- * **deps:** update embroider monorepo to ^0.48.1 ([0283c44](https://github.com/NullVoxPopuli/ember-repl/commit/0283c44f3c53b793533067df0ffe1e75c330ace8))
427
-
428
- ## [2.0.2](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.1...v2.0.2) (2021-12-08)
429
-
430
-
431
- ### Bug Fixes
432
-
433
- * **deps:** update embroider monorepo to ^0.48.0 ([f18bfa5](https://github.com/NullVoxPopuli/ember-repl/commit/f18bfa5e707e5849302277fd4f14569866c7779d))
434
-
435
- ## [2.0.1](https://github.com/NullVoxPopuli/ember-repl/compare/v2.0.0...v2.0.1) (2021-12-05)
436
-
437
-
438
- ### Bug Fixes
439
-
440
- * **deps:** update dependency ember-cli-htmlbars to ^6.0.1 ([735c905](https://github.com/NullVoxPopuli/ember-repl/commit/735c905a2f99be48865f6cd7ba7ea3abe9cd860d))
441
-
442
- # [2.0.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.10...v2.0.0) (2021-12-04)
443
-
444
-
445
- ### chore
446
-
447
- * **internal:** ci updates, drop node 12 ([77637a9](https://github.com/NullVoxPopuli/ember-repl/commit/77637a94c5d30809ceeb4895a21434dfb3bd4d3a))
448
-
449
-
450
- ### BREAKING CHANGES
451
-
452
- * **internal:** drop support for node 12
453
- Add support for Node 16, Ember 3.28
454
-
455
- ## [1.8.10](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.9...v1.8.10) (2021-11-19)
456
-
457
-
458
- ### Bug Fixes
459
-
460
- * **deps:** update dependency ember-cli-htmlbars to v6 ([353fc09](https://github.com/NullVoxPopuli/ember-repl/commit/353fc09daddbab906b0c3d9fe1c82248e151c53b))
461
-
462
- ## [1.8.9](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.8...v1.8.9) (2021-11-19)
463
-
464
-
465
- ### Bug Fixes
466
-
467
- * **deps:** update embroider monorepo to ^0.47.2 ([e86e1d3](https://github.com/NullVoxPopuli/ember-repl/commit/e86e1d31d4f54a6a2bb223f4ecfb8eadc3f0244e))
468
-
469
- ## [1.8.8](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.7...v1.8.8) (2021-11-19)
470
-
471
-
472
- ### Bug Fixes
473
-
474
- * **deps:** update dependency @babel/standalone to ^7.16.4 ([a337cc9](https://github.com/NullVoxPopuli/ember-repl/commit/a337cc99e2dd626161beff2dd5bd615461ea515c))
475
-
476
- ## [1.8.7](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.6...v1.8.7) (2021-11-18)
477
-
478
-
479
- ### Bug Fixes
480
-
481
- * **deps:** update dependency common-tags to ^1.8.2 ([dbcc82a](https://github.com/NullVoxPopuli/ember-repl/commit/dbcc82ab496d5a64858293dccc9a781aefd3e0e3))
482
-
483
- ## [1.8.6](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.5...v1.8.6) (2021-11-18)
484
-
485
-
486
- ### Bug Fixes
487
-
488
- * **deps:** update dependency babel-plugin-htmlbars-inline-precompile to ^5.3.1 ([7f24fdc](https://github.com/NullVoxPopuli/ember-repl/commit/7f24fdc248ad9a9435655b9f3638e87aed339a0f))
489
-
490
- ## [1.8.5](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.4...v1.8.5) (2021-11-17)
491
-
492
-
493
- ### Bug Fixes
494
-
495
- * **deps:** update cli dependencies ([eb6703c](https://github.com/NullVoxPopuli/ember-repl/commit/eb6703c641018a7427c2dfc9b0c7b9ab58f6af13))
496
- * allow to pass call through the included chain ([f47912c](https://github.com/NullVoxPopuli/ember-repl/commit/f47912c577fb326f55f0818b95f47387175570db))
497
- * rollback @semantic/* packages ([8723f39](https://github.com/NullVoxPopuli/ember-repl/commit/8723f390a88409b20eb040f362da1ef9b5d236c1))
498
- * rollback semantic release -- breaking change was not correctly guarded ([d419c8c](https://github.com/NullVoxPopuli/ember-repl/commit/d419c8c2219384ce84e45224fd8a72af740fc7cd))
499
-
500
- ## [1.8.4](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.3...v1.8.4) (2021-09-26)
501
-
502
-
503
- ### Bug Fixes
504
-
505
- * **deps:** update embroider monorepo to ^0.44.2 ([07c5082](https://github.com/NullVoxPopuli/ember-repl/commit/07c5082aabf72aede16a007b46e8d2fc27885171))
506
-
507
- ## [1.8.3](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.2...v1.8.3) (2021-09-18)
508
-
509
-
510
- ### Bug Fixes
511
-
512
- * **deps:** update dependency @babel/standalone to ^7.15.7 ([9a5c72f](https://github.com/NullVoxPopuli/ember-repl/commit/9a5c72f87ffa2bbf93f67ead778b9c52d29c0e94))
513
-
514
- ## [1.8.2](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.1...v1.8.2) (2021-09-12)
515
-
516
-
517
- ### Bug Fixes
518
-
519
- * **deps:** update embroider monorepo to ^0.44.1 ([54788b9](https://github.com/NullVoxPopuli/ember-repl/commit/54788b92ea63c28aa0f290e90ff6cf55e2a72477))
520
-
521
- ## [1.8.1](https://github.com/NullVoxPopuli/ember-repl/compare/v1.8.0...v1.8.1) (2021-09-12)
522
-
523
-
524
- ### Bug Fixes
525
-
526
- * **deps:** update dependency @babel/standalone to ^7.15.6 ([21da073](https://github.com/NullVoxPopuli/ember-repl/commit/21da0737b9f72595c382629d668f47f9ba06dba7))
527
-
528
- # [1.8.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.14...v1.8.0) (2021-09-11)
529
-
530
-
531
- ### Features
532
-
533
- * add `buildComponentMap` to index.js to help with tree shaking ([742ef80](https://github.com/NullVoxPopuli/ember-repl/commit/742ef80897c7379b4d726d5ea23e15fbaf583da2))
534
-
535
- ## [1.7.14](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.13...v1.7.14) (2021-08-11)
536
-
537
-
538
- ### Bug Fixes
539
-
540
- * **deps:** update dependency @babel/standalone to ^7.15.3 ([6bb5cb0](https://github.com/NullVoxPopuli/ember-repl/commit/6bb5cb0941fbe52c166ce4841a720942fef247df))
541
-
542
- ## [1.7.14](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.13...v1.7.14) (2021-08-11)
543
-
544
-
545
- ### Bug Fixes
546
-
547
- * **deps:** update dependency @babel/standalone to ^7.15.3 ([6bb5cb0](https://github.com/NullVoxPopuli/ember-repl/commit/6bb5cb0941fbe52c166ce4841a720942fef247df))
548
-
549
- ## [1.7.13](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.12...v1.7.13) (2021-08-10)
550
-
551
-
552
- ### Bug Fixes
553
-
554
- * **deps:** update dependency ember-auto-import to ^2.1.0 ([c278afb](https://github.com/NullVoxPopuli/ember-repl/commit/c278afbe5617ef991e749f91366173553d1a7bf3))
555
-
556
- ## [1.7.12](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.11...v1.7.12) (2021-08-10)
557
-
558
-
559
- ### Bug Fixes
560
-
561
- * **deps:** update embroider monorepo to ^0.43.5 ([c536aff](https://github.com/NullVoxPopuli/ember-repl/commit/c536affbc4826979ff314f858432fcb26bf4b243))
562
-
563
- ## [1.7.11](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.10...v1.7.11) (2021-08-09)
564
-
565
-
566
- ### Bug Fixes
567
-
568
- * **deps:** update dependency ember-compatibility-helpers to ^1.2.5 ([0683999](https://github.com/NullVoxPopuli/ember-repl/commit/068399954dac4d79eb0d72854a4da1f9e8a7080e))
569
-
570
- ## [1.7.10](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.9...v1.7.10) (2021-08-08)
571
-
572
-
573
- ### Bug Fixes
574
-
575
- * **deps:** update dependency @babel/standalone to ^7.15.2 ([a588aa3](https://github.com/NullVoxPopuli/ember-repl/commit/a588aa3c0481705705c1326c068e55e6f4fd2e2f))
576
-
577
- ## [1.7.9](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.8...v1.7.9) (2021-08-05)
578
-
579
-
580
- ### Bug Fixes
581
-
582
- * **deps:** update dependency @babel/standalone to ^7.15.1 ([5129c2c](https://github.com/NullVoxPopuli/ember-repl/commit/5129c2c20fa1fc67804b10441fa9a5f9cfe12e64))
583
-
584
- ## [1.7.8](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.7...v1.7.8) (2021-08-04)
585
-
586
-
587
- ### Bug Fixes
588
-
589
- * **deps:** update dependency @babel/standalone to ^7.15.0 ([0971e5d](https://github.com/NullVoxPopuli/ember-repl/commit/0971e5de5ac43694d63fb9451f9dcfcc2c4b8aac))
590
-
591
- ## [1.7.7](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.6...v1.7.7) (2021-08-03)
592
-
593
-
594
- ### Bug Fixes
595
-
596
- * **deps:** update embroider monorepo to ^0.43.4 ([ffd05da](https://github.com/NullVoxPopuli/ember-repl/commit/ffd05da5e700f90e05ae5c7a4b4dd1d3c94109a9))
597
-
598
- ## [1.7.6](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.5...v1.7.6) (2021-08-01)
599
-
600
-
601
- ### Bug Fixes
602
-
603
- * **deps:** update dependency @babel/standalone to ^7.14.9 ([f39bf67](https://github.com/NullVoxPopuli/ember-repl/commit/f39bf673510645049e5a62b392c4d9fb54f37022))
604
-
605
- ## [1.7.5](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.4...v1.7.5) (2021-07-31)
606
-
607
-
608
- ### Bug Fixes
609
-
610
- * **deps:** update embroider monorepo to ^0.43.3 ([2ef8bcd](https://github.com/NullVoxPopuli/ember-repl/commit/2ef8bcd0f9726b4d1e8f6a5dd4797a36970205a9))
611
-
612
- ## [1.7.4](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.3...v1.7.4) (2021-07-30)
613
-
614
-
615
- ### Bug Fixes
616
-
617
- * **deps:** update embroider monorepo to ^0.43.2 ([b9ea925](https://github.com/NullVoxPopuli/ember-repl/commit/b9ea925ead339ba3c13d1e37eeca10ba1cc6305c))
618
-
619
- ## [1.7.3](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.2...v1.7.3) (2021-07-30)
620
-
621
-
622
- ### Bug Fixes
623
-
624
- * **deps:** update dependency @babel/standalone to ^7.14.8 ([23a246c](https://github.com/NullVoxPopuli/ember-repl/commit/23a246c6d24b5f53bedd12f07ca6049a81dab40c))
625
-
626
- ## [1.7.2](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.1...v1.7.2) (2021-07-29)
627
-
628
-
629
- ### Bug Fixes
630
-
631
- * **deps:** update embroider monorepo to ^0.43.1 ([c9bd2e3](https://github.com/NullVoxPopuli/ember-repl/commit/c9bd2e3eaaf3a727311d2da5efea0af4b4d379ed))
632
- * **package:** set a description ([062295d](https://github.com/NullVoxPopuli/ember-repl/commit/062295dbdcb396fdad207ed3b340ef9e78b178dd))
633
-
634
- ## [1.7.1](https://github.com/NullVoxPopuli/ember-repl/compare/v1.7.0...v1.7.1) (2021-07-12)
635
-
636
-
637
- ### Bug Fixes
638
-
639
- * **types:** use ec-ts' generated types instead of declarations file ([ec11711](https://github.com/NullVoxPopuli/ember-repl/commit/ec11711d05c84575998c84d82eca7d536d5c7393))
640
-
641
- # [1.7.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.6.2...v1.7.0) (2021-07-12)
642
-
643
-
644
- ### Features
645
-
646
- * **js:** support passing extra modules to compileJS ([2356720](https://github.com/NullVoxPopuli/ember-repl/commit/23567208bef0a37ec60758b80722d5d6d0a942ef))
647
-
648
- ## [1.6.2](https://github.com/NullVoxPopuli/ember-repl/compare/v1.6.1...v1.6.2) (2021-07-12)
649
-
650
-
651
- ### Bug Fixes
652
-
653
- * **embroider:** allow local helpers, the hacky way ([877502d](https://github.com/NullVoxPopuli/ember-repl/commit/877502db8955951e45e670e34691a01cf09f675b))
654
-
655
- ## [1.6.1](https://github.com/NullVoxPopuli/ember-repl/compare/v1.6.0...v1.6.1) (2021-07-10)
656
-
657
-
658
- ### Bug Fixes
659
-
660
- * **js:** combine preconfigured required with window ([9483e89](https://github.com/NullVoxPopuli/ember-repl/commit/9483e89bb189b11e9800ad1dcf4bce382b3dacd5))
661
-
662
- # [1.6.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.5.0...v1.6.0) (2021-07-10)
663
-
664
-
665
- ### Features
666
-
667
- * **js:** use window.require during eval ([1249d11](https://github.com/NullVoxPopuli/ember-repl/commit/1249d1108f645d7bfb3ab71964aaf01b9b3d5e01))
668
-
669
- # [1.5.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.4.1...v1.5.0) (2021-07-08)
670
-
671
-
672
- ### Features
673
-
674
- * **js:** await import babel to protect initial load ([28c3c21](https://github.com/NullVoxPopuli/ember-repl/commit/28c3c215f9827358df5c98c0fbffd7cb7abdecb5))
675
-
676
- ## [1.4.1](https://github.com/NullVoxPopuli/ember-repl/compare/v1.4.0...v1.4.1) (2021-07-06)
677
-
678
-
679
- ### Bug Fixes
680
-
681
- * **utils:** add missing export ([aa897ad](https://github.com/NullVoxPopuli/ember-repl/commit/aa897ada98e45f2256e1e815555903e672ab9c31))
682
-
683
- # [1.4.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.3.1...v1.4.0) (2021-07-06)
684
-
685
-
686
- ### Features
687
-
688
- * **utils:** add invocationName ([645e27d](https://github.com/NullVoxPopuli/ember-repl/commit/645e27d9a58358808ef1ca37c2814d377cd675d9))
689
-
690
- ## [1.3.1](https://github.com/NullVoxPopuli/ember-repl/compare/v1.3.0...v1.3.1) (2021-07-06)
691
-
692
-
693
- ### Bug Fixes
694
-
695
- * **types:** public types had mismatch with published types ([7ce4204](https://github.com/NullVoxPopuli/ember-repl/commit/7ce4204a4f6fd1ff8e11aeab41c7f27130e7be6e))
696
-
697
- # [1.3.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.2.0...v1.3.0) (2021-07-06)
698
-
699
-
700
- ### Features
701
-
702
- * **hbs:** switch away from eval in favor of @glimmer/compiler direct ([7900e73](https://github.com/NullVoxPopuli/ember-repl/commit/7900e7301e3cbe82dc6a58f534979b3c98ac2c4c))
703
- * **types:** add CompileResult type to public API ([6e6dcef](https://github.com/NullVoxPopuli/ember-repl/commit/6e6dcef79fbc2749af6be0a685cdfc5c0a08efb6))
704
-
705
- # [1.2.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.1.0...v1.2.0) (2021-07-06)
706
-
707
-
708
- ### Features
709
-
710
- * **hbs, scope:** Merge pull request [#29](https://github.com/NullVoxPopuli/ember-repl/issues/29) from NullVoxPopuli/support-scope-for-hbs ([611f699](https://github.com/NullVoxPopuli/ember-repl/commit/611f699ef8953be9220c5b94e41170224deec6e6))
711
-
712
- # [1.1.0](https://github.com/NullVoxPopuli/ember-repl/compare/v1.0.3...v1.1.0) (2021-07-05)
713
-
714
-
715
- ### Features
716
-
717
- * **npm:** rename to ember-repl as ember-play is taken ([46235a4](https://github.com/NullVoxPopuli/ember-repl/commit/46235a418b9adc57ff99f02d14f68e8553385bb5))
718
-
719
- ## [1.0.3](https://github.com/NullVoxPopuli/ember-repl/compare/v1.0.2...v1.0.3) (2021-07-05)
720
-
721
-
722
- ### Bug Fixes
723
-
724
- * **deps:** update dependency @babel/standalone to ^7.14.7 ([44e3dff](https://github.com/NullVoxPopuli/ember-repl/commit/44e3dff3d20aa7515ae4932013b6aadf91164df9))
725
-
726
- ## [1.0.2](https://github.com/NullVoxPopuli/ember-repl/compare/v1.0.1...v1.0.2) (2021-07-05)
727
-
728
-
729
- ### Bug Fixes
730
-
731
- * **ts:** add deps until TS is happy ([24ebf32](https://github.com/NullVoxPopuli/ember-repl/commit/24ebf3233253c1020a67072e1ef98526137579f0))
732
-
733
- ## [1.0.1](https://github.com/NullVoxPopuli/ember-repl/compare/v1.0.0...v1.0.1) (2021-07-04)
734
-
735
-
736
- ### Bug Fixes
737
-
738
- * **release:** trigger release ([9ea944c](https://github.com/NullVoxPopuli/ember-repl/commit/9ea944c2a8c5f01358d4a142777bb89112d07616))
739
-
740
- # 1.0.0 (2021-07-04)
741
-
742
-
743
- ### Features
744
-
745
- * **js:** compileJS now works ([cf4730c](https://github.com/NullVoxPopuli/ember-repl/commit/cf4730cb50853b1e38fc293b3e3bd5fdf619e06e))