@progress/kendo-common-tasks 7.7.1-esbuild.16

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 (76) hide show
  1. package/CHANGELOG.md +1027 -0
  2. package/README.md +10 -0
  3. package/bin/ci-commit-snapshots +66 -0
  4. package/bin/ci-semantic-release +44 -0
  5. package/bin/ci-utils +25 -0
  6. package/docs-layout.hbs +48 -0
  7. package/docs-public/bootstrap.css +6759 -0
  8. package/docs-public/bootstrap.min.js +7 -0
  9. package/docs-public/codemirror/clike.min.js +1 -0
  10. package/docs-public/codemirror/codemirror.min.js +5 -0
  11. package/docs-public/codemirror/css.min.js +1 -0
  12. package/docs-public/codemirror/htmlmixed.min.js +1 -0
  13. package/docs-public/codemirror/javascript.min.js +1 -0
  14. package/docs-public/codemirror/jsx.min.js +1 -0
  15. package/docs-public/codemirror/php.min.js +1 -0
  16. package/docs-public/codemirror/runmode.min.js +1 -0
  17. package/docs-public/codemirror/xml.min.js +1 -0
  18. package/docs-public/docs.css +209 -0
  19. package/docs-public/docs.scss +254 -0
  20. package/docs-public/editor/angular/app/app.component.ts +3 -0
  21. package/docs-public/editor/angular/app/app.module.ts +14 -0
  22. package/docs-public/editor/angular/index.html +32 -0
  23. package/docs-public/editor/angular/main.ts +15 -0
  24. package/docs-public/editor/angular/polyfills.ts +73 -0
  25. package/docs-public/editor/angular/styles.css +13 -0
  26. package/docs-public/editor/builder/app/app.component.html +1 -0
  27. package/docs-public/editor/builder/app/app.component.ts +17 -0
  28. package/docs-public/editor/builder/app/app.css +449 -0
  29. package/docs-public/editor/builder/app/app.module.ts +53 -0
  30. package/docs-public/editor/builder/app/core/core.module.ts +19 -0
  31. package/docs-public/editor/builder/app/core/data/data-services.exports.ts +71 -0
  32. package/docs-public/editor/builder/app/core/data/data.service.ts +183 -0
  33. package/docs-public/editor/builder/app/core/data/odata-service-factory.ts +23 -0
  34. package/docs-public/editor/builder/app/core/data/odata.service.ts +88 -0
  35. package/docs-public/editor/builder/app/core/module.config.ts +19 -0
  36. package/docs-public/editor/builder/app/data/odata-provider/customer.config.ts +17 -0
  37. package/docs-public/editor/builder/app/data/odata-provider/customer.model.ts +17 -0
  38. package/docs-public/editor/builder/app/grid-demo.base.component.ts +107 -0
  39. package/docs-public/editor/builder/app/grid-demo.component.html +37 -0
  40. package/docs-public/editor/builder/app/grid-demo.component.ts +1 -0
  41. package/docs-public/editor/builder/app/shared/components/grid/grid.component.html +5 -0
  42. package/docs-public/editor/builder/app/shared/components/grid/grid.component.ts +243 -0
  43. package/docs-public/editor/builder/app/shared/services/grid-incell-editing.service.ts +120 -0
  44. package/docs-public/editor/builder/app/topSection.html +12 -0
  45. package/docs-public/editor/builder/app/topSection.ts +25 -0
  46. package/docs-public/editor/builder/assets/themes/metro.css +18877 -0
  47. package/docs-public/editor/builder/index.html +14 -0
  48. package/docs-public/editor/builder/main.ts +14 -0
  49. package/docs-public/editor/builder/polyfills.ts +67 -0
  50. package/docs-public/editor/builder/styles.css +1 -0
  51. package/docs-public/editor/builder/tsconfig.app.json +13 -0
  52. package/docs-public/editor/builder/typings.d.ts +5 -0
  53. package/docs-public/editor/react/app/main.jsx +6 -0
  54. package/docs-public/editor/react/index.html +32 -0
  55. package/docs-public/editor/vue/app/main.js +5 -0
  56. package/docs-public/editor/vue/index.html +29 -0
  57. package/docs-public/example-runner.js +802 -0
  58. package/docs-public/github.css +99 -0
  59. package/docs-public/snippets.js +1722 -0
  60. package/docs-public/tomorrow-night.css +75 -0
  61. package/docs-server.js +153 -0
  62. package/index.js +305 -0
  63. package/lint-slugs.js +25 -0
  64. package/markdown-serve/index.js +10 -0
  65. package/markdown-serve/parser.js +234 -0
  66. package/markdown-serve/resolver.js +86 -0
  67. package/markdown-serve/server.js +370 -0
  68. package/package.json +95 -0
  69. package/progress-kendo-common-tasks-7.7.0.tgz +0 -0
  70. package/stub-loader.js +3 -0
  71. package/systemjs-bundle/systemjs-bundle.template.js +16 -0
  72. package/systemjs-bundle/task.js +37 -0
  73. package/tasks/package-metadata.js +68 -0
  74. package/test/jest-setup.js +2 -0
  75. package/test/snippets.test.js +373 -0
  76. package/verify-modules.js +60 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1027 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [7.7.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.6.2...@progress/kendo-common-tasks@7.7.0) (2021-08-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * add d3-scale-chromatic to example runner ([5281698](https://github.com/telerik/kendo-build-tasks/commit/52816986c0ff6ec6502982c49c3ed73db66fc290))
12
+
13
+
14
+
15
+
16
+
17
+ ## [7.6.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.6.1...@progress/kendo-common-tasks@7.6.2) (2021-06-21)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **angular-tasks:** commit everything in e2e_visual/snapshots ([7391e83](https://github.com/telerik/kendo-build-tasks/commit/7391e83d30306695617b551f73a30419cbc83368))
23
+ * **common-tasks:** predefined drawing package ([#296](https://github.com/telerik/kendo-build-tasks/issues/296)) ([88bf030](https://github.com/telerik/kendo-build-tasks/commit/88bf030eabaf9d6be773f87047721fb08a616883))
24
+
25
+
26
+
27
+
28
+
29
+ ## [7.6.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.6.0...@progress/kendo-common-tasks@7.6.1) (2021-06-04)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * **common-tasks:** relative file imports without extension ([#292](https://github.com/telerik/kendo-build-tasks/issues/292)) ([8c528f5](https://github.com/telerik/kendo-build-tasks/commit/8c528f5e2a7a445ceedb4f57b962e4fb4d116364))
35
+
36
+
37
+
38
+
39
+
40
+ # [7.6.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.5.1...@progress/kendo-common-tasks@7.6.0) (2021-05-20)
41
+
42
+
43
+ ### Features
44
+
45
+ * add css support to local example runner ([#290](https://github.com/telerik/kendo-build-tasks/issues/290)) ([b11e9e3](https://github.com/telerik/kendo-build-tasks/commit/b11e9e332ead74346416acbf094cbd3b2993ddc2))
46
+
47
+
48
+
49
+
50
+
51
+ ## [7.5.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.5.0...@progress/kendo-common-tasks@7.5.1) (2021-04-29)
52
+
53
+ **Note:** Version bump only for package @progress/kendo-common-tasks
54
+
55
+
56
+
57
+
58
+
59
+ # [7.5.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.4.4...@progress/kendo-common-tasks@7.5.0) (2021-04-28)
60
+
61
+
62
+ ### Bug Fixes
63
+
64
+ * copyright year ([e3a2531](https://github.com/telerik/kendo-build-tasks/commit/e3a253198ee0ba3f4fbd63673d142fab0ce30cff))
65
+
66
+
67
+ ### Features
68
+
69
+ * **common-tasks:** add support for tsx examples in gulp docs ([b160559](https://github.com/telerik/kendo-build-tasks/commit/b1605598b78691dec0ec9bdc22fa21c7df345f11))
70
+
71
+
72
+
73
+
74
+
75
+ ## [7.4.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.4.3...@progress/kendo-common-tasks@7.4.4) (2021-03-19)
76
+
77
+
78
+ ### Bug Fixes
79
+
80
+ * **common-tasks:** visual commit check name ([6cd0cbe](https://github.com/telerik/kendo-build-tasks/commit/6cd0cbe680b91fdd26f1b36f2aae122b8389ab5b))
81
+
82
+
83
+
84
+
85
+
86
+ ## [7.4.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.4.2...@progress/kendo-common-tasks@7.4.3) (2021-03-10)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * **common-tasks:** override branch for semantic prerelease ([2773db9](https://github.com/telerik/kendo-build-tasks/commit/2773db9c97c67665e32acb6462f3276ffa05a363))
92
+ * **common-tasks:** read local branch ([9ad059a](https://github.com/telerik/kendo-build-tasks/commit/9ad059a3365568ba6ea18ba5968f5c309e4a507d))
93
+
94
+
95
+
96
+
97
+
98
+ ## [7.4.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.4.1...@progress/kendo-common-tasks@7.4.2) (2021-03-04)
99
+
100
+
101
+ ### Bug Fixes
102
+
103
+ * **ci-semmantic-release:** read branch name in GH Actions ([9283d16](https://github.com/telerik/kendo-build-tasks/commit/9283d16c9757e756bb0d3e266066dee849858620))
104
+
105
+
106
+
107
+
108
+
109
+ ## [7.4.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.4.0...@progress/kendo-common-tasks@7.4.1) (2021-02-17)
110
+
111
+
112
+ ### Bug Fixes
113
+
114
+ * check shippable env ([05b2d22](https://github.com/telerik/kendo-build-tasks/commit/05b2d22f4a8f0fdae7783f68eb617a370c7563ea))
115
+ * condition syntax ([d551e1a](https://github.com/telerik/kendo-build-tasks/commit/d551e1a69526eccb4f1fd8db7556cd776ccc164d))
116
+ * set visual commit status for GH Actions ([4845d37](https://github.com/telerik/kendo-build-tasks/commit/4845d3777d60136dd00a3b8de89a5cd1fd3688de))
117
+ * **e2e-visual:** set repository name on GH actions ([adfa4ab](https://github.com/telerik/kendo-build-tasks/commit/adfa4abc29adc80c9933459cd016e162d996e0c3))
118
+ * **e2e-visual:** set status on snapshot commit ([d8c7a68](https://github.com/telerik/kendo-build-tasks/commit/d8c7a681a3e4e11a7f940c46c3c0fd1d6cc04030))
119
+ * **e2e-visual:** syntax ([5abc4d9](https://github.com/telerik/kendo-build-tasks/commit/5abc4d94e6489004994f9b606572affc1ea43ba4))
120
+ * **kendo-angular-tasks:** ci-commit-snapshots on GH Actions ([1750ccd](https://github.com/telerik/kendo-build-tasks/commit/1750ccd405670a90f59f8f78dbaddb9d6858b130))
121
+
122
+
123
+
124
+
125
+
126
+ # [7.4.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.3.3...@progress/kendo-common-tasks@7.4.0) (2021-02-12)
127
+
128
+
129
+ ### Features
130
+
131
+ * replace placeholder ([#259](https://github.com/telerik/kendo-build-tasks/issues/259)) ([5ddee69](https://github.com/telerik/kendo-build-tasks/commit/5ddee69b9890281c4b097de1e08478edc19e8733))
132
+
133
+
134
+
135
+
136
+
137
+ ## [7.3.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.3.2...@progress/kendo-common-tasks@7.3.3) (2020-12-15)
138
+
139
+
140
+ ### Bug Fixes
141
+
142
+ * **common-tasks:** add kendo-licensing to example runner ([9f98c32](https://github.com/telerik/kendo-build-tasks/commit/9f98c32c6cc90116d1bef050b1d077310e744fa4))
143
+
144
+
145
+
146
+
147
+
148
+ ## [7.3.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.3.1...@progress/kendo-common-tasks@7.3.2) (2020-11-10)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **typescript-tasks:** gulp start ([0b41190](https://github.com/telerik/kendo-build-tasks/commit/0b41190633a6ac50e4fc6b8777ff8678834b3fa1))
154
+
155
+
156
+
157
+
158
+
159
+ ## [7.3.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.3.0...@progress/kendo-common-tasks@7.3.1) (2020-10-15)
160
+
161
+
162
+ ### Bug Fixes
163
+
164
+ * skip version in metadata ([51ccea6](https://github.com/telerik/kendo-build-tasks/commit/51ccea66fcfc35690e0ed28a5f1b3b8c10082b5d))
165
+
166
+
167
+
168
+
169
+
170
+ # [7.3.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.2.1...@progress/kendo-common-tasks@7.3.0) (2020-10-15)
171
+
172
+
173
+ ### Features
174
+
175
+ * **react-tasks:** update license metadata when a placeholder is present ([#235](https://github.com/telerik/kendo-build-tasks/issues/235)) ([81f8d7e](https://github.com/telerik/kendo-build-tasks/commit/81f8d7ec2f120120c979e4812783eb721aa8c626))
176
+
177
+
178
+
179
+
180
+
181
+ ## [7.2.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.2.0...@progress/kendo-common-tasks@7.2.1) (2020-09-16)
182
+
183
+
184
+ ### Bug Fixes
185
+
186
+ * add new packages to stackblitz dependencies list ([7937729](https://github.com/telerik/kendo-build-tasks/commit/7937729c94272a51aa6efe781d280ccf7d50a8e5))
187
+
188
+
189
+
190
+
191
+
192
+ # [7.2.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.1.4...@progress/kendo-common-tasks@7.2.0) (2020-08-13)
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * disable adding metadata until licensing is enabled for all packages ([ae525c6](https://github.com/telerik/kendo-build-tasks/commit/ae525c6f71652e825327fd45c56f4db909bbc54b))
198
+
199
+
200
+ ### Features
201
+
202
+ * add package metadata task ([5500cbf](https://github.com/telerik/kendo-build-tasks/commit/5500cbf810bfb20f8e6c40ebdbf114fd18363b4e))
203
+
204
+
205
+
206
+
207
+
208
+ ## [7.1.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.1.3...@progress/kendo-common-tasks@7.1.4) (2020-08-04)
209
+
210
+
211
+ ### Bug Fixes
212
+
213
+ * skip ci-commit-snapshots for snapshot updates ([b193278](https://github.com/telerik/kendo-build-tasks/commit/b19327843094588caaa4bb0903d85f119c5c5c6a)), closes [#228](https://github.com/telerik/kendo-build-tasks/issues/228)
214
+
215
+
216
+
217
+
218
+
219
+ ## [7.1.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.1.2...@progress/kendo-common-tasks@7.1.3) (2020-08-03)
220
+
221
+
222
+ ### Bug Fixes
223
+
224
+ * do not skip CI when updating visual previews ([cbcb0a0](https://github.com/telerik/kendo-build-tasks/commit/cbcb0a0ee0ff58f9dda80f113992e46f5730f370))
225
+
226
+
227
+
228
+
229
+
230
+ ## [7.1.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.1.1...@progress/kendo-common-tasks@7.1.2) (2020-06-24)
231
+
232
+
233
+ ### Bug Fixes
234
+
235
+ * **common-tasks:** add pako-esm and jszip-esm to React runner ([bc0b6d3](https://github.com/telerik/kendo-build-tasks/commit/bc0b6d3d55430c0b71a1b8934710c19bbcd64f9a))
236
+ * allow running all snippets in examples ([8808e2c](https://github.com/telerik/kendo-build-tasks/commit/8808e2c646485673f5078a39d1817e5d47075e7a))
237
+ * gulp start in common-tasks ([f408dee](https://github.com/telerik/kendo-build-tasks/commit/f408deecfd9628e5b5e70907849c1402c6372644))
238
+ * **common-tasks:** serve webpack output from /dev-server ([3b41cf4](https://github.com/telerik/kendo-build-tasks/commit/3b41cf4e6951c9349483137ba896f2f7af3ff142))
239
+
240
+
241
+
242
+
243
+
244
+ ## [7.1.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.1.0...@progress/kendo-common-tasks@7.1.1) (2020-06-16)
245
+
246
+
247
+ ### Bug Fixes
248
+
249
+ * add jszip and pako esm packages ([85be5c9](https://github.com/telerik/kendo-build-tasks/commit/85be5c9f2a50439ad8f203d874e85da702404273))
250
+
251
+
252
+
253
+
254
+
255
+ # [7.1.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.0.5...@progress/kendo-common-tasks@7.1.0) (2020-05-18)
256
+
257
+
258
+ ### Features
259
+
260
+ * add pager to stackblitz dependencies ([#215](https://github.com/telerik/kendo-build-tasks/issues/215)) ([856596e](https://github.com/telerik/kendo-build-tasks/commit/856596e3e634de72606df9b115364fbea2305e93))
261
+
262
+
263
+
264
+
265
+
266
+ ## [7.0.5](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.0.4...@progress/kendo-common-tasks@7.0.5) (2020-05-13)
267
+
268
+ **Note:** Version bump only for package @progress/kendo-common-tasks
269
+
270
+
271
+
272
+
273
+
274
+ ## [7.0.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.0.3...@progress/kendo-common-tasks@7.0.4) (2020-05-12)
275
+
276
+ **Note:** Version bump only for package @progress/kendo-common-tasks
277
+
278
+
279
+
280
+
281
+
282
+ ## [7.0.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.0.2...@progress/kendo-common-tasks@7.0.3) (2020-05-11)
283
+
284
+ **Note:** Version bump only for package @progress/kendo-common-tasks
285
+
286
+
287
+
288
+
289
+
290
+ ## [7.0.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.0.1...@progress/kendo-common-tasks@7.0.2) (2020-05-04)
291
+
292
+
293
+ ### Bug Fixes
294
+
295
+ * examples with multipl files are not opened correctly ([dc8f70f](https://github.com/telerik/kendo-build-tasks/commit/dc8f70f2fa79d388d35cc2307e80111156e9548e))
296
+ * multiple files examples not runnable in vue ([4aa2322](https://github.com/telerik/kendo-build-tasks/commit/4aa23226a2347393c2bc066e8c66c8c552b1bd05))
297
+ * separate vue wrappers dependencies ([d59ab69](https://github.com/telerik/kendo-build-tasks/commit/d59ab69434ba9dd2c431d71877e9ad145f666e13))
298
+
299
+
300
+
301
+
302
+
303
+ ## [7.0.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.0.0...@progress/kendo-common-tasks@7.0.1) (2020-04-13)
304
+
305
+
306
+ ### Bug Fixes
307
+
308
+ * upgrade vinyl version ([#203](https://github.com/telerik/kendo-build-tasks/issues/203)) ([30c6e9a](https://github.com/telerik/kendo-build-tasks/commit/30c6e9a5b0aabf7910c2b19122f1d7cc7d550c1c))
309
+
310
+
311
+
312
+
313
+
314
+ # [7.0.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.4.5...@progress/kendo-common-tasks@7.0.0) (2020-04-08)
315
+
316
+
317
+ ### Features
318
+
319
+ * gulp 4 upgrade ([#201](https://github.com/telerik/kendo-build-tasks/issues/201)) ([81bf760](https://github.com/telerik/kendo-build-tasks/commit/81bf760f18b9beb8afac5962369e99b086351c8f))
320
+
321
+
322
+ ### BREAKING CHANGES
323
+
324
+ * Upgraded to gulp4 : @telerik packages will stay at old versions for now
325
+
326
+ * chore: fix syntax
327
+
328
+
329
+
330
+
331
+
332
+ ## [6.4.5](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.4.4...@progress/kendo-common-tasks@6.4.5) (2020-03-20)
333
+
334
+ **Note:** Version bump only for package @progress/kendo-common-tasks
335
+
336
+
337
+
338
+
339
+
340
+ ## [6.4.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.4.3...@progress/kendo-common-tasks@6.4.4) (2020-02-19)
341
+
342
+ **Note:** Version bump only for package @progress/kendo-common-tasks
343
+
344
+
345
+
346
+
347
+
348
+ ## [6.4.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.4.2...@progress/kendo-common-tasks@6.4.3) (2020-01-17)
349
+
350
+
351
+ ### Bug Fixes
352
+
353
+ * add treelist to stackblitz dependencies ([93c298e](https://github.com/telerik/kendo-build-tasks/commit/93c298ef387867d698e231422b0765a50e49001b))
354
+
355
+
356
+
357
+
358
+
359
+ ## [6.4.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.4.1...@progress/kendo-common-tasks@6.4.2) (2020-01-13)
360
+
361
+ **Note:** Version bump only for package @progress/kendo-common-tasks
362
+
363
+
364
+
365
+
366
+
367
+ ## [6.4.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.4.0...@progress/kendo-common-tasks@6.4.1) (2019-12-24)
368
+
369
+
370
+ ### Bug Fixes
371
+
372
+ * revert switch to jsdelivr ([6e1dbbc](https://github.com/telerik/kendo-build-tasks/commit/6e1dbbcb2bd154403610723d9135b37dfc196703))
373
+ * switch npmUrl to jsdelivr ([a8a8c22](https://github.com/telerik/kendo-build-tasks/commit/a8a8c22646ccf45ebbeb5efa6662a253d23fc3d9))
374
+ * use set version of @angular/animations and forms ([380d2d1](https://github.com/telerik/kendo-build-tasks/commit/380d2d1fc450c44b836aace7fd0068e6794fc8b6))
375
+
376
+
377
+
378
+
379
+
380
+ # [6.4.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.3.3...@progress/kendo-common-tasks@6.4.0) (2019-12-23)
381
+
382
+
383
+ ### Features
384
+
385
+ * **common-tasks:** upgrade Angular to 8.14 ([c7898ad](https://github.com/telerik/kendo-build-tasks/commit/c7898ada1feeda6f3d05cb67acd6f3f8c3c79489))
386
+
387
+
388
+
389
+
390
+
391
+ ## [6.3.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.3.2...@progress/kendo-common-tasks@6.3.3) (2019-12-17)
392
+
393
+
394
+ ### Bug Fixes
395
+
396
+ * do not release base repos ([6d9139c](https://github.com/telerik/kendo-build-tasks/commit/6d9139c70260d13e6be6a52717a3b6e2305ec0be))
397
+ * lower angular version ([#170](https://github.com/telerik/kendo-build-tasks/issues/170)) ([50b15be](https://github.com/telerik/kendo-build-tasks/commit/50b15be611661696fa1aa5769e10d8bd0fee7828))
398
+ * update angular ([#168](https://github.com/telerik/kendo-build-tasks/issues/168)) ([0e6f7bc](https://github.com/telerik/kendo-build-tasks/commit/0e6f7bcdbc80a84946d0e078bdbe42ec137316e5))
399
+ * use ng 7.2.14 ([#171](https://github.com/telerik/kendo-build-tasks/issues/171)) ([29ad86e](https://github.com/telerik/kendo-build-tasks/commit/29ad86e88c8ee010c51100c10436a605319e2ce7))
400
+
401
+
402
+
403
+
404
+
405
+ ## [6.3.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.3.1...@progress/kendo-common-tasks@6.3.2) (2019-12-06)
406
+
407
+
408
+ ### Bug Fixes
409
+
410
+ * add mapping for prosemirror-schema-list ([c2804ad](https://github.com/telerik/kendo-build-tasks/commit/c2804ad5f283fb4924222aecebc5f1a7a46079eb))
411
+ * fix silent failure ([#163](https://github.com/telerik/kendo-build-tasks/issues/163)) ([a169e56](https://github.com/telerik/kendo-build-tasks/commit/a169e567a8a4dc90a8ac9fdb62f4a68aa427cf5e))
412
+
413
+
414
+
415
+
416
+
417
+ ## [6.3.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.3.0...@progress/kendo-common-tasks@6.3.1) (2019-11-18)
418
+
419
+
420
+ ### Bug Fixes
421
+
422
+ * do not run semantic-release in PRs ([25f6f38](https://github.com/telerik/kendo-build-tasks/commit/25f6f38ab59f7df1f7880ae5d6ea12f4d1d71990))
423
+
424
+
425
+
426
+
427
+
428
+ # [6.3.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.2.1...@progress/kendo-common-tasks@6.3.0) (2019-11-12)
429
+
430
+
431
+ ### Bug Fixes
432
+
433
+ * **docs-public:** docs layout uses global platform variable ([1d15d97](https://github.com/telerik/kendo-build-tasks/commit/1d15d97b5734878d06ccbc914736c6321fbb1c52))
434
+ * add version to vue unpkg ([7e5340d](https://github.com/telerik/kendo-build-tasks/commit/7e5340dc103954758cc3671bcc14d63dbd7cbd14))
435
+ * set version to kendo unpg ([de70f98](https://github.com/telerik/kendo-build-tasks/commit/de70f98d7b3c2d14571104d22255621c49b1ab62))
436
+
437
+
438
+ ### Features
439
+
440
+ * semantic-release script ([#145](https://github.com/telerik/kendo-build-tasks/issues/145)) ([b4bffa1](https://github.com/telerik/kendo-build-tasks/commit/b4bffa15aac0bd18704b471bfa8dd1eebad25e3a))
441
+
442
+
443
+
444
+
445
+
446
+ ## [6.2.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.2.0...@progress/kendo-common-tasks@6.2.1) (2019-10-22)
447
+
448
+
449
+ ### Bug Fixes
450
+
451
+ * **docs-public:** prefix global platform variable ([9452f62](https://github.com/telerik/kendo-build-tasks/commit/9452f62119ef957d127cbbbc8b12f87b9c15c61f))
452
+
453
+
454
+
455
+
456
+
457
+ # [6.2.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.1.2...@progress/kendo-common-tasks@6.2.0) (2019-09-27)
458
+
459
+
460
+ ### Bug Fixes
461
+
462
+ * do not copy artifacts ([9ff1252](https://github.com/telerik/kendo-build-tasks/commit/9ff1252))
463
+ * handle-snapshots as separate script ([#129](https://github.com/telerik/kendo-build-tasks/issues/129)) ([b066bf5](https://github.com/telerik/kendo-build-tasks/commit/b066bf5))
464
+ * push command ([041dda9](https://github.com/telerik/kendo-build-tasks/commit/041dda9))
465
+ * rename env variable ([#122](https://github.com/telerik/kendo-build-tasks/issues/122)) ([e253e07](https://github.com/telerik/kendo-build-tasks/commit/e253e07))
466
+ * use direct URL to push artifacts ([5bf2738](https://github.com/telerik/kendo-build-tasks/commit/5bf2738))
467
+ * use full repo name on Shippable ([7671a5b](https://github.com/telerik/kendo-build-tasks/commit/7671a5b))
468
+ * use git to push to origin ([2f397b3](https://github.com/telerik/kendo-build-tasks/commit/2f397b3))
469
+
470
+
471
+ ### Features
472
+
473
+ * add --visual option for e2e tests ([#118](https://github.com/telerik/kendo-build-tasks/issues/118)) ([ae91502](https://github.com/telerik/kendo-build-tasks/commit/ae91502))
474
+ * set_commit_status utility and usage ([#128](https://github.com/telerik/kendo-build-tasks/issues/128)) ([2a13145](https://github.com/telerik/kendo-build-tasks/commit/2a13145))
475
+
476
+
477
+
478
+
479
+
480
+ ## [6.1.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.1.1...@progress/kendo-common-tasks@6.1.2) (2019-09-18)
481
+
482
+
483
+ ### Bug Fixes
484
+
485
+ * non-existing dependency ([1463847](https://github.com/telerik/kendo-build-tasks/commit/1463847))
486
+
487
+
488
+
489
+
490
+
491
+ ## [6.1.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.1.0...@progress/kendo-common-tasks@6.1.1) (2019-09-18)
492
+
493
+
494
+ ### Bug Fixes
495
+
496
+ * add drawer and progress dependencies ([dad4264](https://github.com/telerik/kendo-build-tasks/commit/dad4264))
497
+
498
+
499
+
500
+
501
+
502
+ # [6.1.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.0.3...@progress/kendo-common-tasks@6.1.0) (2019-09-12)
503
+
504
+
505
+ ### Bug Fixes
506
+
507
+ * add prosemirror-tables package to example runner config ([0c5d1c3](https://github.com/telerik/kendo-build-tasks/commit/0c5d1c3))
508
+
509
+
510
+ ### Features
511
+
512
+ * add CI scripts ([1a942fe](https://github.com/telerik/kendo-build-tasks/commit/1a942fe))
513
+
514
+
515
+
516
+
517
+
518
+ ## [6.0.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.0.2...@progress/kendo-common-tasks@6.0.3) (2019-07-31)
519
+
520
+
521
+ ### Bug Fixes
522
+
523
+ * add kendo-draggable to stackblitz dependencies ([ccd53ee](https://github.com/telerik/kendo-build-tasks/commit/ccd53ee))
524
+
525
+
526
+
527
+
528
+
529
+ ## [6.0.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.0.1...@progress/kendo-common-tasks@6.0.2) (2019-06-20)
530
+
531
+
532
+ ### Bug Fixes
533
+
534
+ * preserve whitespaces in angular examples ([6ea163a](https://github.com/telerik/kendo-build-tasks/commit/6ea163a))
535
+ * update hammerjs ([d2ba917](https://github.com/telerik/kendo-build-tasks/commit/d2ba917))
536
+
537
+
538
+
539
+
540
+
541
+ ## [6.0.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@6.0.0...@progress/kendo-common-tasks@6.0.1) (2019-06-20)
542
+
543
+
544
+ ### Bug Fixes
545
+
546
+ * add SystemJS bundle for kendo-angular-common ([5326d2f](https://github.com/telerik/kendo-build-tasks/commit/5326d2f))
547
+ * remove resize sensor ([2734f2a](https://github.com/telerik/kendo-build-tasks/commit/2734f2a))
548
+
549
+
550
+
551
+
552
+
553
+ # [6.0.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.1.3...@progress/kendo-common-tasks@6.0.0) (2019-06-19)
554
+
555
+
556
+ ### Features
557
+
558
+ * upgrade examples to Angular 7.x, drop rxjs-compat ([a835ff2](https://github.com/telerik/kendo-build-tasks/commit/a835ff2))
559
+
560
+
561
+ ### BREAKING CHANGES
562
+
563
+ * No longer compatible with packages requiring rxjs-compat
564
+
565
+
566
+
567
+
568
+
569
+ ## [5.1.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.1.2...@progress/kendo-common-tasks@5.1.3) (2019-05-15)
570
+
571
+ **Note:** Version bump only for package @progress/kendo-common-tasks
572
+
573
+
574
+
575
+
576
+
577
+ ## [5.1.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.1.1...@progress/kendo-common-tasks@5.1.2) (2019-02-28)
578
+
579
+
580
+ ### Bug Fixes
581
+
582
+ * bump react version to 16.8.2 ([#67](https://github.com/telerik/kendo-build-tasks/issues/67)) ([0ac92cc](https://github.com/telerik/kendo-build-tasks/commit/0ac92cc))
583
+
584
+
585
+
586
+
587
+
588
+ ## [5.1.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.1.0...@progress/kendo-common-tasks@5.1.1) (2019-02-25)
589
+
590
+
591
+ ### Bug Fixes
592
+
593
+ * **common-tasks:** failing highlight js package install ([9d2df3a](https://github.com/telerik/kendo-build-tasks/commit/9d2df3a))
594
+
595
+
596
+
597
+
598
+
599
+ # [5.1.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.0.5...@progress/kendo-common-tasks@5.1.0) (2019-02-19)
600
+
601
+
602
+ ### Features
603
+
604
+ * add react editor dependency for stackblitz ([f0e3bbd](https://github.com/telerik/kendo-build-tasks/commit/f0e3bbd))
605
+
606
+
607
+
608
+
609
+
610
+ ## [5.0.5](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.0.4...@progress/kendo-common-tasks@5.0.5) (2019-02-19)
611
+
612
+
613
+ ### Bug Fixes
614
+
615
+ * compilation error in polyfills.ts ([46e07df](https://github.com/telerik/kendo-build-tasks/commit/46e07df))
616
+
617
+
618
+
619
+
620
+
621
+ ## [5.0.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.0.3...@progress/kendo-common-tasks@5.0.4) (2019-02-01)
622
+
623
+
624
+ ### Bug Fixes
625
+
626
+ * babel configuration ([#52](https://github.com/telerik/kendo-build-tasks/issues/52)) ([cf6c94c](https://github.com/telerik/kendo-build-tasks/commit/cf6c94c))
627
+
628
+
629
+
630
+
631
+
632
+ ## [5.0.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.0.2...@progress/kendo-common-tasks@5.0.3) (2019-01-31)
633
+
634
+
635
+ ### Bug Fixes
636
+
637
+ * replaxe loaders with rules ([#48](https://github.com/telerik/kendo-build-tasks/issues/48)) ([e597829](https://github.com/telerik/kendo-build-tasks/commit/e597829))
638
+
639
+
640
+
641
+
642
+
643
+ ## [5.0.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.0.1...@progress/kendo-common-tasks@5.0.2) (2019-01-30)
644
+
645
+
646
+ ### Bug Fixes
647
+
648
+ * upgrade to tslib 1.9.3 ([1b0304e](https://github.com/telerik/kendo-build-tasks/commit/1b0304e))
649
+ * use full path to tslib ([8c6e393](https://github.com/telerik/kendo-build-tasks/commit/8c6e393))
650
+
651
+
652
+
653
+
654
+
655
+ ## [5.0.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@5.0.0...@progress/kendo-common-tasks@5.0.1) (2019-01-24)
656
+
657
+
658
+ ### Bug Fixes
659
+
660
+ * webpack naming temp fix ([#47](https://github.com/telerik/kendo-build-tasks/issues/47)) ([10367d5](https://github.com/telerik/kendo-build-tasks/commit/10367d5))
661
+
662
+
663
+
664
+
665
+
666
+ # [5.0.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@4.0.4...@progress/kendo-common-tasks@5.0.0) (2019-01-23)
667
+
668
+
669
+ * Package tasks (#30) ([a1e9327](https://github.com/telerik/kendo-build-tasks/commit/a1e9327)), closes [#30](https://github.com/telerik/kendo-build-tasks/issues/30) [#1](https://github.com/telerik/kendo-build-tasks/issues/1) [#2](https://github.com/telerik/kendo-build-tasks/issues/2) [#5](https://github.com/telerik/kendo-build-tasks/issues/5) [#4](https://github.com/telerik/kendo-build-tasks/issues/4) [#6](https://github.com/telerik/kendo-build-tasks/issues/6) [#7](https://github.com/telerik/kendo-build-tasks/issues/7) [#8](https://github.com/telerik/kendo-build-tasks/issues/8) [#10](https://github.com/telerik/kendo-build-tasks/issues/10) [kendo-angular-component-base#55](https://github.com/kendo-angular-component-base/issues/55)
670
+
671
+
672
+ ### BREAKING CHANGES
673
+
674
+ * Packages must specify "dist/npm/main.d.ts" as "typings"
675
+ entry point in package.json
676
+
677
+ Having them with the ES modules can break Angular Univeral Apps, see
678
+
679
+
680
+
681
+
682
+
683
+ ## [4.0.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@4.0.3...@progress/kendo-common-tasks@4.0.4) (2019-01-16)
684
+
685
+
686
+ ### Bug Fixes
687
+
688
+ * add new react packages to stackblitz ([#45](https://github.com/telerik/kendo-build-tasks/issues/45)) ([dcec3a0](https://github.com/telerik/kendo-build-tasks/commit/dcec3a0))
689
+
690
+
691
+
692
+
693
+
694
+ ## [4.0.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@4.0.2...@progress/kendo-common-tasks@4.0.3) (2019-01-14)
695
+
696
+
697
+ ### Bug Fixes
698
+
699
+ * **themechooser:** honor platform-specific theme in angular ([fbf9ea1](https://github.com/telerik/kendo-build-tasks/commit/fbf9ea1))
700
+ * add editor to Kendo Angular's StackBlitz deps ([57164e8](https://github.com/telerik/kendo-build-tasks/commit/57164e8))
701
+ * return default value from platformSpecificTheme ([2e77386](https://github.com/telerik/kendo-build-tasks/commit/2e77386))
702
+ * set exact hammer.min.js URL ([07f5ff8](https://github.com/telerik/kendo-build-tasks/commit/07f5ff8))
703
+ * switch to 'default ([58efa94](https://github.com/telerik/kendo-build-tasks/commit/58efa94))
704
+
705
+
706
+
707
+
708
+
709
+ ## [4.0.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@4.0.1...@progress/kendo-common-tasks@4.0.2) (2018-12-17)
710
+
711
+
712
+ ### Bug Fixes
713
+
714
+ * pin core-js to v2.5.7 ([450efd4](https://github.com/telerik/kendo-build-tasks/commit/450efd4))
715
+ * remove json loader ([#28](https://github.com/telerik/kendo-build-tasks/issues/28)) ([ab5ed57](https://github.com/telerik/kendo-build-tasks/commit/ab5ed57))
716
+
717
+
718
+
719
+
720
+
721
+ ## [4.0.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@4.0.0...@progress/kendo-common-tasks@4.0.1) (2018-12-11)
722
+
723
+ **Note:** Version bump only for package @progress/kendo-common-tasks
724
+
725
+
726
+
727
+
728
+
729
+ # 4.0.0 (2018-11-30)
730
+
731
+
732
+ ### Bug Fixes
733
+
734
+ * add [@angular](https://github.com/angular)/forms to examples runner ([28c2c60](https://github.com/telerik/kendo-build-tasks/commit/28c2c60))
735
+ * add Angular router to SystemJS ([a7e8df5](https://github.com/telerik/kendo-build-tasks/commit/a7e8df5))
736
+ * add bootstrap css to runner frame ([7bcd644](https://github.com/telerik/kendo-build-tasks/commit/7bcd644)), closes [telerik/kendo-theme-default#69](https://github.com/telerik/kendo-theme-default/issues/69)
737
+ * add charts and intl to system bundles ([2bf4c24](https://github.com/telerik/kendo-build-tasks/commit/2bf4c24))
738
+ * add chrome_headless ([124591f](https://github.com/telerik/kendo-build-tasks/commit/124591f))
739
+ * add crossorigin attribute to themes link ([08abe97](https://github.com/telerik/kendo-build-tasks/commit/08abe97))
740
+ * add editor markup for react examples ([5376490](https://github.com/telerik/kendo-build-tasks/commit/5376490))
741
+ * add event log styles for examples ([#51](https://github.com/telerik/kendo-build-tasks/issues/51)) ([cc460d7](https://github.com/telerik/kendo-build-tasks/commit/cc460d7))
742
+ * add gauges and tooltip packages to react stackblitz dependencies ([31b7076](https://github.com/telerik/kendo-build-tasks/commit/31b7076))
743
+ * add gulp-protractor ([#36](https://github.com/telerik/kendo-build-tasks/issues/36)) ([0a81767](https://github.com/telerik/kendo-build-tasks/commit/0a81767))
744
+ * add hostname to npmUrl ([df41e27](https://github.com/telerik/kendo-build-tasks/commit/df41e27))
745
+ * add intl dependencies ([5cefeb2](https://github.com/telerik/kendo-build-tasks/commit/5cefeb2))
746
+ * add JSZip to Vue example runner ([d3a59aa](https://github.com/telerik/kendo-build-tasks/commit/d3a59aa))
747
+ * add kendo popup common to examples runner ([813508f](https://github.com/telerik/kendo-build-tasks/commit/813508f))
748
+ * add kendo-angular-popup to system.js ([f298790](https://github.com/telerik/kendo-build-tasks/commit/f298790))
749
+ * add kendo-angular-resize sensor to runner ([537de69](https://github.com/telerik/kendo-build-tasks/commit/537de69))
750
+ * add kendo-charts and drawing to runner ([14bae17](https://github.com/telerik/kendo-build-tasks/commit/14bae17))
751
+ * add kendo-data-query to runner ([ae47580](https://github.com/telerik/kendo-build-tasks/commit/ae47580))
752
+ * add kendo-draggable SystemJS bundle ([cbbcf10](https://github.com/telerik/kendo-build-tasks/commit/cbbcf10))
753
+ * add kendo-drawing to systemjs ([cfb4ab7](https://github.com/telerik/kendo-build-tasks/commit/cfb4ab7))
754
+ * add kendo-save-as to SystemJS config ([1b05592](https://github.com/telerik/kendo-build-tasks/commit/1b05592))
755
+ * add l10n as dependency ([#43](https://github.com/telerik/kendo-build-tasks/issues/43)) ([4f68fde](https://github.com/telerik/kendo-build-tasks/commit/4f68fde))
756
+ * add loading image, closes telerik/k2-site[#53](https://github.com/telerik/kendo-build-tasks/issues/53) ([2e7d2bd](https://github.com/telerik/kendo-build-tasks/commit/2e7d2bd))
757
+ * add missing export only when necessary ([cd626a3](https://github.com/telerik/kendo-build-tasks/commit/cd626a3))
758
+ * add notification to Angular deps ([3dde017](https://github.com/telerik/kendo-build-tasks/commit/3dde017))
759
+ * add observable/dom to rxjs bundle ([8e92c4d](https://github.com/telerik/kendo-build-tasks/commit/8e92c4d))
760
+ * add pako mapping ([fbf3d6f](https://github.com/telerik/kendo-build-tasks/commit/fbf3d6f))
761
+ * add pako to systemjs config ([f7f2c0b](https://github.com/telerik/kendo-build-tasks/commit/f7f2c0b))
762
+ * add platform_content tags to slug validation ([c26e29d](https://github.com/telerik/kendo-build-tasks/commit/c26e29d))
763
+ * add protractor and webdriver packages ([#38](https://github.com/telerik/kendo-build-tasks/issues/38)) ([3c7995f](https://github.com/telerik/kendo-build-tasks/commit/3c7995f))
764
+ * add scheduler to StackBlitz dependencies ([a53d882](https://github.com/telerik/kendo-build-tasks/commit/a53d882))
765
+ * add SJS bundles for kendo-common, kendo-inputs-common ([a01a4f6](https://github.com/telerik/kendo-build-tasks/commit/a01a4f6))
766
+ * add toolbar to angular dependencies ([f3aaeb4](https://github.com/telerik/kendo-build-tasks/commit/f3aaeb4))
767
+ * add tslib so to fix plunks ([391287e](https://github.com/telerik/kendo-build-tasks/commit/391287e))
768
+ * add web-animations-js dependency and IE polyfills ([f54b650](https://github.com/telerik/kendo-build-tasks/commit/f54b650))
769
+ * allow blueprint files to be included, based on a flag ([4a1baac](https://github.com/telerik/kendo-build-tasks/commit/4a1baac))
770
+ * allow CORS to fetch theme ([ae2cc54](https://github.com/telerik/kendo-build-tasks/commit/ae2cc54))
771
+ * allow html-only snippets ([b7d1a13](https://github.com/telerik/kendo-build-tasks/commit/b7d1a13)), closes [telerik/k2-site#140](https://github.com/telerik/k2-site/issues/140)
772
+ * Allow in-line comments in snippets ([4a1c828](https://github.com/telerik/kendo-build-tasks/commit/4a1c828)), closes [telerik/k2-site#40](https://github.com/telerik/k2-site/issues/40)
773
+ * allow runner to import multiple files ([fd76bda](https://github.com/telerik/kendo-build-tasks/commit/fd76bda)), closes [telerik/k2-site#21](https://github.com/telerik/k2-site/issues/21) [telerik/k2-site#36](https://github.com/telerik/k2-site/issues/36)
774
+ * allow running of vue snippets ([e5b53ae](https://github.com/telerik/kendo-build-tasks/commit/e5b53ae))
775
+ * always install kendo-ui dependency in vue ([ea29fa1](https://github.com/telerik/kendo-build-tasks/commit/ea29fa1))
776
+ * analyze directives prior to posting to plunkr ([5d52d2d](https://github.com/telerik/kendo-build-tasks/commit/5d52d2d)), closes [telerik/k2-site#145](https://github.com/telerik/k2-site/issues/145)
777
+ * angular dependencies are broken with latest Angular ([fd6716f](https://github.com/telerik/kendo-build-tasks/commit/fd6716f))
778
+ * angular-intl scope ([32237f0](https://github.com/telerik/kendo-build-tasks/commit/32237f0))
779
+ * animation modules ([aeb2c79](https://github.com/telerik/kendo-build-tasks/commit/aeb2c79))
780
+ * animation modules in example runner ([36eb246](https://github.com/telerik/kendo-build-tasks/commit/36eb246))
781
+ * app.component now has styles ([ee0b920](https://github.com/telerik/kendo-build-tasks/commit/ee0b920))
782
+ * auto add missing dependencies from examples ([46a8a6b](https://github.com/telerik/kendo-build-tasks/commit/46a8a6b))
783
+ * auto-generate example iframe titles ([0ef3dab](https://github.com/telerik/kendo-build-tasks/commit/0ef3dab))
784
+ * automatic import of HttpModule ([cb43ba0](https://github.com/telerik/kendo-build-tasks/commit/cb43ba0))
785
+ * avoid duplicate run buttons ([e747a3f](https://github.com/telerik/kendo-build-tasks/commit/e747a3f))
786
+ * avoid popup blocker for plunkers ([b836f85](https://github.com/telerik/kendo-build-tasks/commit/b836f85))
787
+ * basetag is now determined by platform (gulp docs or k2site) ([7f3f4e7](https://github.com/telerik/kendo-build-tasks/commit/7f3f4e7))
788
+ * boostrapAngular/React crashing ([1f450e7](https://github.com/telerik/kendo-build-tasks/commit/1f450e7))
789
+ * bump minor version of loaded rxjs bundle ([04eb656](https://github.com/telerik/kendo-build-tasks/commit/04eb656))
790
+ * bump ng version to 4.4.6 ([de223b4](https://github.com/telerik/kendo-build-tasks/commit/de223b4))
791
+ * catch errors due to removed iframe ([8d103ac](https://github.com/telerik/kendo-build-tasks/commit/8d103ac))
792
+ * center loading indicator ([78a6a9e](https://github.com/telerik/kendo-build-tasks/commit/78a6a9e))
793
+ * change code sample heading ([c9f6900](https://github.com/telerik/kendo-build-tasks/commit/c9f6900)), closes [telerik/k2-site#90](https://github.com/telerik/k2-site/issues/90)
794
+ * change loading indicator to use k-i-loading ([e6a9c38](https://github.com/telerik/kendo-build-tasks/commit/e6a9c38)), closes [telerik/k2-site#161](https://github.com/telerik/k2-site/issues/161)
795
+ * columns are not aligned after twbs 4 ([2d4ed91](https://github.com/telerik/kendo-build-tasks/commit/2d4ed91))
796
+ * combine similar module directives ([#53](https://github.com/telerik/kendo-build-tasks/issues/53)) ([0b8f450](https://github.com/telerik/kendo-build-tasks/commit/0b8f450))
797
+ * correct global var name for CDN ([ddf4b85](https://github.com/telerik/kendo-build-tasks/commit/ddf4b85))
798
+ * CSS class names in CDN build are correct now ([23bbc2c](https://github.com/telerik/kendo-build-tasks/commit/23bbc2c))
799
+ * definitions for SCSS code ([169b1a0](https://github.com/telerik/kendo-build-tasks/commit/169b1a0))
800
+ * do not allow running of bash snippets ([df7c136](https://github.com/telerik/kendo-build-tasks/commit/df7c136))
801
+ * do not augment code blocks without types ([68febae](https://github.com/telerik/kendo-build-tasks/commit/68febae))
802
+ * do not render chrome on demo-embed elements ([174c079](https://github.com/telerik/kendo-build-tasks/commit/174c079))
803
+ * do not send a second module in angular apps ([e34de06](https://github.com/telerik/kendo-build-tasks/commit/e34de06))
804
+ * do not use es6 in example runner ([1cf1eac](https://github.com/telerik/kendo-build-tasks/commit/1cf1eac))
805
+ * don't open default browser on [16:00:55] No gulpfile found ([68a1033](https://github.com/telerik/kendo-build-tasks/commit/68a1033))
806
+ * dymanic port aligned with browsersync ([5ac816b](https://github.com/telerik/kendo-build-tasks/commit/5ac816b))
807
+ * dynamic dependency version ([dc6c5ac](https://github.com/telerik/kendo-build-tasks/commit/dc6c5ac))
808
+ * embed fonts ([31739f7](https://github.com/telerik/kendo-build-tasks/commit/31739f7))
809
+ * embed markdown-serve dependency ([e8f9f37](https://github.com/telerik/kendo-build-tasks/commit/e8f9f37))
810
+ * enable meta info in gulp docs ([e2829be](https://github.com/telerik/kendo-build-tasks/commit/e2829be))
811
+ * enable prod. mode in snippets ([#21](https://github.com/telerik/kendo-build-tasks/issues/21)) ([2ed5046](https://github.com/telerik/kendo-build-tasks/commit/2ed5046))
812
+ * enable separate dependencies for react-wrappers ([73c9740](https://github.com/telerik/kendo-build-tasks/commit/73c9740))
813
+ * entry point of systemjs-json-plugin ([3b0f6e0](https://github.com/telerik/kendo-build-tasks/commit/3b0f6e0))
814
+ * escape color in template ([e74107b](https://github.com/telerik/kendo-build-tasks/commit/e74107b))
815
+ * eslint errors ([a02ba4f](https://github.com/telerik/kendo-build-tasks/commit/a02ba4f))
816
+ * external modules ([d67ebae](https://github.com/telerik/kendo-build-tasks/commit/d67ebae))
817
+ * failing Karma tests on Chrome ([b496f4b](https://github.com/telerik/kendo-build-tasks/commit/b496f4b))
818
+ * fallback to cdn distribution when no main file is present ([928d04a](https://github.com/telerik/kendo-build-tasks/commit/928d04a))
819
+ * fix syntax error when importing error tracking provider ([4840271](https://github.com/telerik/kendo-build-tasks/commit/4840271))
820
+ * guard against empty elements in auto-imports ([#54](https://github.com/telerik/kendo-build-tasks/issues/54)) ([2982ce9](https://github.com/telerik/kendo-build-tasks/commit/2982ce9))
821
+ * hardcode phantom version ([#26](https://github.com/telerik/kendo-build-tasks/issues/26)) ([c46bb40](https://github.com/telerik/kendo-build-tasks/commit/c46bb40))
822
+ * honor html listing when building plunkr ([44f04b1](https://github.com/telerik/kendo-build-tasks/commit/44f04b1)), closes [telerik/k2-site#45](https://github.com/telerik/k2-site/issues/45)
823
+ * honour tsx files in HMR ([4efae8e](https://github.com/telerik/kendo-build-tasks/commit/4efae8e))
824
+ * import for ES modules ([54354be](https://github.com/telerik/kendo-build-tasks/commit/54354be))
825
+ * import raven-js through JS module ([2955aff](https://github.com/telerik/kendo-build-tasks/commit/2955aff))
826
+ * import tslib ([9730981](https://github.com/telerik/kendo-build-tasks/commit/9730981))
827
+ * improve slug validation ([8b757c9](https://github.com/telerik/kendo-build-tasks/commit/8b757c9))
828
+ * improve styles of hosted docs ([c680563](https://github.com/telerik/kendo-build-tasks/commit/c680563))
829
+ * improve Vue editor template ([f2c8dbd](https://github.com/telerik/kendo-build-tasks/commit/f2c8dbd))
830
+ * include [@telerik](https://github.com/telerik)/kendo-dropdowns-common instead of the [@progress](https://github.com/progress) package ([0303518](https://github.com/telerik/kendo-build-tasks/commit/0303518))
831
+ * Install Vue dependencies. Import kendo-ui correctly ([c45f9d7](https://github.com/telerik/kendo-build-tasks/commit/c45f9d7))
832
+ * jekyll cannot parse let for var declarations ([3a27ad9](https://github.com/telerik/kendo-build-tasks/commit/3a27ad9))
833
+ * library name is redundant in commonjs format ([af5211d](https://github.com/telerik/kendo-build-tasks/commit/af5211d))
834
+ * link kendo-inputs-common main.js in example-runner ([#18](https://github.com/telerik/kendo-build-tasks/issues/18)) ([75f642c](https://github.com/telerik/kendo-build-tasks/commit/75f642c))
835
+ * lint-slug on windows ([be54d7e](https://github.com/telerik/kendo-build-tasks/commit/be54d7e))
836
+ * load pipable operators from rxjs bundle ([c5842cf](https://github.com/telerik/kendo-build-tasks/commit/c5842cf))
837
+ * load themes from jsdelivr ([97d80d2](https://github.com/telerik/kendo-build-tasks/commit/97d80d2))
838
+ * lock packet versions to avoid extra requests ([5846a3a](https://github.com/telerik/kendo-build-tasks/commit/5846a3a))
839
+ * make angular snippets runnable in ie11 ([b193591](https://github.com/telerik/kendo-build-tasks/commit/b193591)), closes [telerik/k2-site#55](https://github.com/telerik/k2-site/issues/55)
840
+ * make snippet runner idempotent ([dd7391d](https://github.com/telerik/kendo-build-tasks/commit/dd7391d)), closes [telerik/k2-site#51](https://github.com/telerik/k2-site/issues/51)
841
+ * merge conflict ([1eb4552](https://github.com/telerik/kendo-build-tasks/commit/1eb4552))
842
+ * modify homepage example ([3b1a5dc](https://github.com/telerik/kendo-build-tasks/commit/3b1a5dc))
843
+ * modify plunkr systemjs config after 7adabac0d86c ([4c2de70](https://github.com/telerik/kendo-build-tasks/commit/4c2de70))
844
+ * move close-button styles to k2-site ([bc8d9ce](https://github.com/telerik/kendo-build-tasks/commit/bc8d9ce))
845
+ * multiple module imports ([599e648](https://github.com/telerik/kendo-build-tasks/commit/599e648))
846
+ * npmrc links ([#12](https://github.com/telerik/kendo-build-tasks/issues/12)) ([97d913b](https://github.com/telerik/kendo-build-tasks/commit/97d913b))
847
+ * packages version depending on env ([54f881a](https://github.com/telerik/kendo-build-tasks/commit/54f881a))
848
+ * pass theme accent to templates ([bdac778](https://github.com/telerik/kendo-build-tasks/commit/bdac778))
849
+ * pin babel-core to 6.x ([#41](https://github.com/telerik/kendo-build-tasks/issues/41)) ([038be72](https://github.com/telerik/kendo-build-tasks/commit/038be72))
850
+ * plunker posts work for [@telerik](https://github.com/telerik) dependent modules ([5d09099](https://github.com/telerik/kendo-build-tasks/commit/5d09099))
851
+ * plunker styling ([#34](https://github.com/telerik/kendo-build-tasks/issues/34)) ([cf74ab5](https://github.com/telerik/kendo-build-tasks/commit/cf74ab5))
852
+ * plunking works with templates ([7616c29](https://github.com/telerik/kendo-build-tasks/commit/7616c29))
853
+ * plunkr works with rc.7 ([cf22927](https://github.com/telerik/kendo-build-tasks/commit/cf22927))
854
+ * post new lines in HTML-only snippets ([ee2f186](https://github.com/telerik/kendo-build-tasks/commit/ee2f186))
855
+ * posting of single-file jsx snippets ([2e6a0fb](https://github.com/telerik/kendo-build-tasks/commit/2e6a0fb))
856
+ * posting to plunker ([836c853](https://github.com/telerik/kendo-build-tasks/commit/836c853))
857
+ * protractor export ([edaa2e6](https://github.com/telerik/kendo-build-tasks/commit/edaa2e6))
858
+ * react embedded examples now working ([0907601](https://github.com/telerik/kendo-build-tasks/commit/0907601))
859
+ * refactor snippets packages logic ([#59](https://github.com/telerik/kendo-build-tasks/issues/59)) ([3146399](https://github.com/telerik/kendo-build-tasks/commit/3146399))
860
+ * reference kendo-data-query in systemjs config ([c933a82](https://github.com/telerik/kendo-build-tasks/commit/c933a82))
861
+ * remove auto import of the [@angular](https://github.com/angular)/forms as it is not needed ([813b05e](https://github.com/telerik/kendo-build-tasks/commit/813b05e))
862
+ * remove callout tabs code from snippets ([469c6e9](https://github.com/telerik/kendo-build-tasks/commit/469c6e9))
863
+ * remove console ([3edf00b](https://github.com/telerik/kendo-build-tasks/commit/3edf00b))
864
+ * remove duplicate module imports from plunkr samples. Closes telerik/k2-site[#60](https://github.com/telerik/kendo-build-tasks/issues/60) ([10eed93](https://github.com/telerik/kendo-build-tasks/commit/10eed93))
865
+ * remove duplicate slash in angular bundles path ([86a2fbd](https://github.com/telerik/kendo-build-tasks/commit/86a2fbd))
866
+ * remove internal modules from SystemJS config ([#23](https://github.com/telerik/kendo-build-tasks/issues/23)) ([ffad20d](https://github.com/telerik/kendo-build-tasks/commit/ffad20d)), closes [telerik/k2-site#89](https://github.com/telerik/k2-site/issues/89)
867
+ * remove obsolete chroma-js configuration ([#82](https://github.com/telerik/kendo-build-tasks/issues/82)) ([542dc9c](https://github.com/telerik/kendo-build-tasks/commit/542dc9c))
868
+ * remove overflow of runner app ([74cbaf4](https://github.com/telerik/kendo-build-tasks/commit/74cbaf4)), closes [telerik/k2-site#49](https://github.com/telerik/k2-site/issues/49)
869
+ * remove package channel from react-wrappers ([45e763f](https://github.com/telerik/kendo-build-tasks/commit/45e763f))
870
+ * remove protractor ([d835712](https://github.com/telerik/kendo-build-tasks/commit/d835712))
871
+ * remove resize sensor from angular dependencies ([9ade652](https://github.com/telerik/kendo-build-tasks/commit/9ade652))
872
+ * remove systemjs duplicate imports ([aa1e1f0](https://github.com/telerik/kendo-build-tasks/commit/aa1e1f0)), closes [#57](https://github.com/telerik/kendo-build-tasks/issues/57)
873
+ * remove SystemJS from Vue examples, import required libraries ([86d7b4f](https://github.com/telerik/kendo-build-tasks/commit/86d7b4f))
874
+ * remove the need of defining static modules ([08e1941](https://github.com/telerik/kendo-build-tasks/commit/08e1941))
875
+ * rename npmcdn to unpkg ([33407f5](https://github.com/telerik/kendo-build-tasks/commit/33407f5))
876
+ * rename save-as package ([ea4b05b](https://github.com/telerik/kendo-build-tasks/commit/ea4b05b))
877
+ * require Raven as described in docs ([dfa16a7](https://github.com/telerik/kendo-build-tasks/commit/dfa16a7)), closes [/docs.sentry.io/clients/javascript/install/#es2015-es6](https://github.com//docs.sentry.io/clients/javascript/install//issues/es2015-es6)
878
+ * resolve error when running builder demos ([c19fd04](https://github.com/telerik/kendo-build-tasks/commit/c19fd04))
879
+ * resolve relative paths in third party apps ([ba3193c](https://github.com/telerik/kendo-build-tasks/commit/ba3193c))
880
+ * reuse systemjs config from demos in plunker ([97f3b1d](https://github.com/telerik/kendo-build-tasks/commit/97f3b1d))
881
+ * Revert bump Angular to 7 ([9061f85](https://github.com/telerik/kendo-build-tasks/commit/9061f85))
882
+ * Revert bump version in snippets as well ([4c3eee3](https://github.com/telerik/kendo-build-tasks/commit/4c3eee3))
883
+ * revert to plugin-typescript@5 ([4c337b6](https://github.com/telerik/kendo-build-tasks/commit/4c337b6))
884
+ * serve all files ([9996284](https://github.com/telerik/kendo-build-tasks/commit/9996284))
885
+ * serve themes from local files ([c5b8057](https://github.com/telerik/kendo-build-tasks/commit/c5b8057))
886
+ * set height of file-list inside meta height ([3d061ec](https://github.com/telerik/kendo-build-tasks/commit/3d061ec))
887
+ * setup works in the jekyll env ([73b372f](https://github.com/telerik/kendo-build-tasks/commit/73b372f))
888
+ * show animated loading indicator in plunkr ([6e918c6](https://github.com/telerik/kendo-build-tasks/commit/6e918c6))
889
+ * silence webpack dev server ([30fda07](https://github.com/telerik/kendo-build-tasks/commit/30fda07))
890
+ * stop plunker from opening popups ([bc881f9](https://github.com/telerik/kendo-build-tasks/commit/bc881f9))
891
+ * styleUrls do not work in multiple-file demos ([af432b4](https://github.com/telerik/kendo-build-tasks/commit/af432b4))
892
+ * switch on disableHostCheck to simplify testing ([#62](https://github.com/telerik/kendo-build-tasks/issues/62)) ([1f14ec7](https://github.com/telerik/kendo-build-tasks/commit/1f14ec7))
893
+ * switch themes NPM channel based on environment ([0eba853](https://github.com/telerik/kendo-build-tasks/commit/0eba853))
894
+ * system bundles ([3fb17c9](https://github.com/telerik/kendo-build-tasks/commit/3fb17c9))
895
+ * systemjs bundle name ([7f856e1](https://github.com/telerik/kendo-build-tasks/commit/7f856e1))
896
+ * systemjs bundles configuration ([6d1f334](https://github.com/telerik/kendo-build-tasks/commit/6d1f334))
897
+ * systemjs json plugin ([5c3f6a6](https://github.com/telerik/kendo-build-tasks/commit/5c3f6a6))
898
+ * temporary hardcode dependencies ([85c33c7](https://github.com/telerik/kendo-build-tasks/commit/85c33c7))
899
+ * transpile directly to systemJS format ([238a408](https://github.com/telerik/kendo-build-tasks/commit/238a408))
900
+ * update angular and scripts ([a2191ee](https://github.com/telerik/kendo-build-tasks/commit/a2191ee))
901
+ * update angular version ([49c8cbe](https://github.com/telerik/kendo-build-tasks/commit/49c8cbe))
902
+ * update builder base url ([fe8ac33](https://github.com/telerik/kendo-build-tasks/commit/fe8ac33))
903
+ * update dependencies to enable node 8 build ([7947749](https://github.com/telerik/kendo-build-tasks/commit/7947749))
904
+ * update dependency list for runnable demos ([f0f8ef9](https://github.com/telerik/kendo-build-tasks/commit/f0f8ef9))
905
+ * **builder:** fix path to bundles ([0634ef2](https://github.com/telerik/kendo-build-tasks/commit/0634ef2))
906
+ * update plunkr directives ([82d24f6](https://github.com/telerik/kendo-build-tasks/commit/82d24f6))
907
+ * update plunkr directives logic. ([eaaa325](https://github.com/telerik/kendo-build-tasks/commit/eaaa325)), closes [telerik/k2-site#110](https://github.com/telerik/k2-site/issues/110)
908
+ * update rxjs to 5.4.3 ([b1995f2](https://github.com/telerik/kendo-build-tasks/commit/b1995f2))
909
+ * update slugs validation regex ([0ce0aa3](https://github.com/telerik/kendo-build-tasks/commit/0ce0aa3))
910
+ * update snippets' styles ([d0c59a3](https://github.com/telerik/kendo-build-tasks/commit/d0c59a3))
911
+ * update zone.js to 0.6.23 ([abeab45](https://github.com/telerik/kendo-build-tasks/commit/abeab45))
912
+ * upgrade angular to 2.4.2 in example runner ([1ea1105](https://github.com/telerik/kendo-build-tasks/commit/1ea1105))
913
+ * upgrade Angular to 4.1.2, zone.js to 0.8 ([3bf20cf](https://github.com/telerik/kendo-build-tasks/commit/3bf20cf))
914
+ * upgrade Karma to 1.3 ([560ee2a](https://github.com/telerik/kendo-build-tasks/commit/560ee2a))
915
+ * upgrade to TypeScript 4.0.3 ([d5f4ab5](https://github.com/telerik/kendo-build-tasks/commit/d5f4ab5))
916
+ * upgrade TypeScript to 2.0.10 ([e5d4ed6](https://github.com/telerik/kendo-build-tasks/commit/e5d4ed6))
917
+ * use Angular 2.0 final in snippets ([5d8daf3](https://github.com/telerik/kendo-build-tasks/commit/5d8daf3))
918
+ * use drawing system bundle to reduce requests ([037bc91](https://github.com/telerik/kendo-build-tasks/commit/037bc91))
919
+ * use kendo-drawing CDN bundle ([882dc10](https://github.com/telerik/kendo-build-tasks/commit/882dc10))
920
+ * use latest versions of platform-agnostic packages ([803b3b1](https://github.com/telerik/kendo-build-tasks/commit/803b3b1))
921
+ * use local theme for StackBlitz ([fcba7bf](https://github.com/telerik/kendo-build-tasks/commit/fcba7bf))
922
+ * use main.js entry file for common packages ([501b4e2](https://github.com/telerik/kendo-build-tasks/commit/501b4e2))
923
+ * use metadata to set iframe height ([788a918](https://github.com/telerik/kendo-build-tasks/commit/788a918))
924
+ * use official bootstrap 4 in examples ([919708d](https://github.com/telerik/kendo-build-tasks/commit/919708d))
925
+ * use RxJS bundle to reduce request count ([bab360d](https://github.com/telerik/kendo-build-tasks/commit/bab360d))
926
+ * use the same scripts when loading snippets in runner ([a6344e0](https://github.com/telerik/kendo-build-tasks/commit/a6344e0)), closes [#65](https://github.com/telerik/kendo-build-tasks/issues/65)
927
+ * **angular:** error when opening example in Stackblitz in IE ([7526c88](https://github.com/telerik/kendo-build-tasks/commit/7526c88))
928
+ * **builder:** enable hot reloading in stackblitz ([aa7d341](https://github.com/telerik/kendo-build-tasks/commit/aa7d341))
929
+ * **docs:** add react-dom-server systemjs mapping ([8382b1d](https://github.com/telerik/kendo-build-tasks/commit/8382b1d))
930
+ * **docs:** improve runtime language detection ([#125](https://github.com/telerik/kendo-build-tasks/issues/125)) ([cadbfb1](https://github.com/telerik/kendo-build-tasks/commit/cadbfb1))
931
+ * **docs:** remove defaultExtension from app package mapping ([#117](https://github.com/telerik/kendo-build-tasks/issues/117)) ([f9df796](https://github.com/telerik/kendo-build-tasks/commit/f9df796))
932
+ * **docs:** serve content from monorepo root modules ([0d42012](https://github.com/telerik/kendo-build-tasks/commit/0d42012))
933
+ * **example-runner:** add kendo-drawing to react systemjsConfig ([a24bb57](https://github.com/telerik/kendo-build-tasks/commit/a24bb57))
934
+ * **example-runner:** add packages to the example app ([8cad325](https://github.com/telerik/kendo-build-tasks/commit/8cad325))
935
+ * **example-runner:** do not override kendo-ui & jQuery packages ([ac86c31](https://github.com/telerik/kendo-build-tasks/commit/ac86c31))
936
+ * **example-runner:** map systemjs-json-plugin and cldr-data ([6bdb112](https://github.com/telerik/kendo-build-tasks/commit/6bdb112))
937
+ * **gulp:** decouple karma, lintslugs, systemjs tasks ([17299b9](https://github.com/telerik/kendo-build-tasks/commit/17299b9))
938
+ * **ng:** add resize sensor to SB ([fdffdc4](https://github.com/telerik/kendo-build-tasks/commit/fdffdc4))
939
+ * **plunker:** pass snippet theme to plunker ([fb94b90](https://github.com/telerik/kendo-build-tasks/commit/fb94b90))
940
+ * **postcss-calc:** increase precision to 10 ([a02c77c](https://github.com/telerik/kendo-build-tasks/commit/a02c77c))
941
+ * **react:** change directline systemjs mapping ([0e27f57](https://github.com/telerik/kendo-build-tasks/commit/0e27f57))
942
+ * use TypeScript as a default language ([42abd20](https://github.com/telerik/kendo-build-tasks/commit/42abd20))
943
+ * various small issues with plunkerTemplate ([33b90d8](https://github.com/telerik/kendo-build-tasks/commit/33b90d8))
944
+ * **react:** inline jsx preview ([0c1054c](https://github.com/telerik/kendo-build-tasks/commit/0c1054c))
945
+ * wrappers platform only for dependencies ([7b585a8](https://github.com/telerik/kendo-build-tasks/commit/7b585a8))
946
+ * **react:** dynamically load cldr-files to stackblitz ([5bbcdd8](https://github.com/telerik/kendo-build-tasks/commit/5bbcdd8))
947
+ * **react:** pre-load cldr-data to avoid popup ([aeecc48](https://github.com/telerik/kendo-build-tasks/commit/aeecc48))
948
+ * **react:** show main file by default ([d63ce93](https://github.com/telerik/kendo-build-tasks/commit/d63ce93))
949
+ * **react:** stackblitz index file for react ([b737f72](https://github.com/telerik/kendo-build-tasks/commit/b737f72))
950
+ * **react:** systemjs mappings ([b75e8ab](https://github.com/telerik/kendo-build-tasks/commit/b75e8ab))
951
+ * **runner:** remove overflow:hidden from example runner ([1d23f77](https://github.com/telerik/kendo-build-tasks/commit/1d23f77))
952
+ * **styles:** link to https logos of code runners ([7da4d17](https://github.com/telerik/kendo-build-tasks/commit/7da4d17))
953
+ * wrong check ([8f83ca8](https://github.com/telerik/kendo-build-tasks/commit/8f83ca8))
954
+ * zonejs is conditinally loaded for builer only ([e8bbd07](https://github.com/telerik/kendo-build-tasks/commit/e8bbd07))
955
+
956
+
957
+ ### Features
958
+
959
+ * add api-ai-javascript to runner ([50991e1](https://github.com/telerik/kendo-build-tasks/commit/50991e1))
960
+ * add conv ui dependencies ([33b4ff6](https://github.com/telerik/kendo-build-tasks/commit/33b4ff6))
961
+ * add conv ui dependencies for React ([18ccb91](https://github.com/telerik/kendo-build-tasks/commit/18ccb91))
962
+ * add Firefox launcher to e2e tests ([6af8ddb](https://github.com/telerik/kendo-build-tasks/commit/6af8ddb))
963
+ * add json loader ([fa6e2fc](https://github.com/telerik/kendo-build-tasks/commit/fa6e2fc))
964
+ * add lint-slugs task ([#86](https://github.com/telerik/kendo-build-tasks/issues/86)) ([881904c](https://github.com/telerik/kendo-build-tasks/commit/881904c))
965
+ * add marked to Angular dependencies ([#140](https://github.com/telerik/kendo-build-tasks/issues/140)) ([4b743ee](https://github.com/telerik/kendo-build-tasks/commit/4b743ee))
966
+ * add postcss calc ([66bce01](https://github.com/telerik/kendo-build-tasks/commit/66bce01))
967
+ * add task for generating systemjs bundle ([637ca0e](https://github.com/telerik/kendo-build-tasks/commit/637ca0e))
968
+ * add UMD bundle with no external dependencies ([c064d67](https://github.com/telerik/kendo-build-tasks/commit/c064d67))
969
+ * added conditional base tag and zonejs support in plunker template ([ce526ae](https://github.com/telerik/kendo-build-tasks/commit/ce526ae))
970
+ * added demo content into seed project ([53c3232](https://github.com/telerik/kendo-build-tasks/commit/53c3232))
971
+ * added plunker template for uib ([6adaef2](https://github.com/telerik/kendo-build-tasks/commit/6adaef2))
972
+ * added stackblitz demo seend for builder ([3ad4190](https://github.com/telerik/kendo-build-tasks/commit/3ad4190))
973
+ * added systemjs for builder ([c452f5b](https://github.com/telerik/kendo-build-tasks/commit/c452f5b))
974
+ * bump Angular to 5.2.2 ([5b32305](https://github.com/telerik/kendo-build-tasks/commit/5b32305))
975
+ * bump Angular to 7 ([47708cd](https://github.com/telerik/kendo-build-tasks/commit/47708cd))
976
+ * bump Angular to 7 ([288d66b](https://github.com/telerik/kendo-build-tasks/commit/288d66b))
977
+ * clone common-tasks package ([#6](https://github.com/telerik/kendo-build-tasks/issues/6)) ([9a36d81](https://github.com/telerik/kendo-build-tasks/commit/9a36d81))
978
+ * copy to clipboard buttons ([5f3fb5e](https://github.com/telerik/kendo-build-tasks/commit/5f3fb5e))
979
+ * docs task ([58a9084](https://github.com/telerik/kendo-build-tasks/commit/58a9084))
980
+ * docs task builds the necessary CDN resources ([8d58373](https://github.com/telerik/kendo-build-tasks/commit/8d58373))
981
+ * enable theme options for snippets; refactor ([d176242](https://github.com/telerik/kendo-build-tasks/commit/d176242))
982
+ * enable theme-chooser for react ([721b88f](https://github.com/telerik/kendo-build-tasks/commit/721b88f))
983
+ * enabled stackblitz runner for kuib ([559f802](https://github.com/telerik/kendo-build-tasks/commit/559f802))
984
+ * **examples:** Add JS tracking for demos ([#19](https://github.com/telerik/kendo-build-tasks/issues/19)) ([d2cb24b](https://github.com/telerik/kendo-build-tasks/commit/d2cb24b)), closes [telerik/k2-site#58](https://github.com/telerik/k2-site/issues/58)
985
+ * enabled vue support in kendo-common-tasks ([e63d62e](https://github.com/telerik/kendo-build-tasks/commit/e63d62e))
986
+ * export karma configurator ([ca0428d](https://github.com/telerik/kendo-build-tasks/commit/ca0428d))
987
+ * export karmaStart function ([8f29403](https://github.com/telerik/kendo-build-tasks/commit/8f29403))
988
+ * Fix angular version in the runner ([0b54fea](https://github.com/telerik/kendo-build-tasks/commit/0b54fea))
989
+ * import dropdowns-common into examples runner ([3ab7884](https://github.com/telerik/kendo-build-tasks/commit/3ab7884))
990
+ * multiple chunks for NPM build ([cd7779e](https://github.com/telerik/kendo-build-tasks/commit/cd7779e))
991
+ * pass-through noParse option to Webpack ([be25eab](https://github.com/telerik/kendo-build-tasks/commit/be25eab))
992
+ * post snippets to plunkr ([de2e5d9](https://github.com/telerik/kendo-build-tasks/commit/de2e5d9))
993
+ * remove css modules and class name prefix ([b75637a](https://github.com/telerik/kendo-build-tasks/commit/b75637a))
994
+ * remove turbolinks ([95f0a92](https://github.com/telerik/kendo-build-tasks/commit/95f0a92)), closes [telerik/k2-site#111](https://github.com/telerik/k2-site/issues/111)
995
+ * removed uib folder and added builder support to snippets.js ([eeda741](https://github.com/telerik/kendo-build-tasks/commit/eeda741))
996
+ * stackblitz support for react ([f48764c](https://github.com/telerik/kendo-build-tasks/commit/f48764c))
997
+ * support demo runners for both react and angular ([#88](https://github.com/telerik/kendo-build-tasks/issues/88)) ([48aff96](https://github.com/telerik/kendo-build-tasks/commit/48aff96))
998
+ * support for chromeless demo ([6921c47](https://github.com/telerik/kendo-build-tasks/commit/6921c47))
999
+ * support modern babel transpiling options ([4b6bec2](https://github.com/telerik/kendo-build-tasks/commit/4b6bec2))
1000
+ * test semantic release ([5133fa6](https://github.com/telerik/kendo-build-tasks/commit/5133fa6))
1001
+ * update codemirror, add syntax highlights ([e191195](https://github.com/telerik/kendo-build-tasks/commit/e191195))
1002
+ * update runner to work with RC5 ([d5a5eed](https://github.com/telerik/kendo-build-tasks/commit/d5a5eed))
1003
+ * update RxJS to 5.5.2 ([60cead0](https://github.com/telerik/kendo-build-tasks/commit/60cead0))
1004
+ * update snippets to allow multiple file demos ([1fa8553](https://github.com/telerik/kendo-build-tasks/commit/1fa8553))
1005
+ * update to Angular 5.0 ([#96](https://github.com/telerik/kendo-build-tasks/issues/96)) ([de4d720](https://github.com/telerik/kendo-build-tasks/commit/de4d720))
1006
+ * updated seed app for builder ([dea7216](https://github.com/telerik/kendo-build-tasks/commit/dea7216))
1007
+ * updated seed app to be compatible with systemjs ([462037c](https://github.com/telerik/kendo-build-tasks/commit/462037c))
1008
+ * upgrade Angular to 4.2.2 ([b64e7a6](https://github.com/telerik/kendo-build-tasks/commit/b64e7a6))
1009
+ * upgrade to Angular 4 ([81f20ea](https://github.com/telerik/kendo-build-tasks/commit/81f20ea))
1010
+ * upgrade to Webpack 4 ([7ccdbea](https://github.com/telerik/kendo-build-tasks/commit/7ccdbea))
1011
+ * use bootstrap 4 (alpha 6) ([aa3a191](https://github.com/telerik/kendo-build-tasks/commit/aa3a191))
1012
+ * Use main{.jsx/.ts} as an unified entry point ([2eed82e](https://github.com/telerik/kendo-build-tasks/commit/2eed82e))
1013
+ * use v2 themes in snippet runner ([a709ae9](https://github.com/telerik/kendo-build-tasks/commit/a709ae9))
1014
+ * validate docs for unknown Liquid tags ([c090211](https://github.com/telerik/kendo-build-tasks/commit/c090211))
1015
+ * **docs:** add content_platform plugin implementation ([953266e](https://github.com/telerik/kendo-build-tasks/commit/953266e))
1016
+ * verify npm package for cyclic dependencies ([1f33f08](https://github.com/telerik/kendo-build-tasks/commit/1f33f08))
1017
+ * WIP replace plunker with stackblitz ([dbd694d](https://github.com/telerik/kendo-build-tasks/commit/dbd694d))
1018
+ * **docs:** add support ts and js react demos ([#116](https://github.com/telerik/kendo-build-tasks/issues/116)) ([b256aab](https://github.com/telerik/kendo-build-tasks/commit/b256aab))
1019
+ * **docs:** enable local docs preview for react wrapper packages ([#118](https://github.com/telerik/kendo-build-tasks/issues/118)) ([a4ca670](https://github.com/telerik/kendo-build-tasks/commit/a4ca670))
1020
+
1021
+
1022
+ ### BREAKING CHANGES
1023
+
1024
+ * Remove theme build
1025
+ * No longer compatible with Angular 2
1026
+ * The CSS Modules have been removed, and selectors are no
1027
+ longer prefixed.