@progress/kendo-common-tasks 7.7.3-dev.6 → 7.9.1-cdn-bundle.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,34 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.9.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.8.0...@progress/kendo-common-tasks@7.9.0) (2021-12-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * **angular-tasks:** add support for kendo-font-icons ([d68dd96](https://github.com/telerik/kendo-build-tasks/commit/d68dd96e7406dd5eb4cd1684da023f548e414591))
12
+
13
+
14
+
15
+
16
+
17
+ # [7.8.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.7.2...@progress/kendo-common-tasks@7.8.0) (2021-11-09)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * do not execute curl output in wait_url ([cbd2fac](https://github.com/telerik/kendo-build-tasks/commit/cbd2facc4a70f5f49c46807f2aa2d3ba23534e94))
23
+ * pin webpack-dev-server version ([#313](https://github.com/telerik/kendo-build-tasks/issues/313)) ([f518a2e](https://github.com/telerik/kendo-build-tasks/commit/f518a2ea5058b769188cc8da85e0e2864fc26e2c))
24
+
25
+
26
+ ### Features
27
+
28
+ * **kendo-common-tasks:** add SG alert ([#312](https://github.com/telerik/kendo-build-tasks/issues/312)) ([141091e](https://github.com/telerik/kendo-build-tasks/commit/141091e9fb63cb4a8c10f366786b447a28978583))
29
+
30
+
31
+
32
+
33
+
6
34
  ## [7.7.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.7.1...@progress/kendo-common-tasks@7.7.2) (2021-10-08)
7
35
 
8
36
 
package/docs-layout.hbs CHANGED
@@ -41,7 +41,7 @@
41
41
  <body>
42
42
  <div class="container">
43
43
  <div class="mt-3 alert alert-info" role="alert" style="margin-top: 20px;">
44
- <strong>Internal Note</strong>: Need help with the docs? Go to the <a target="_blank" href="https://testdocs.telerik.com/style-guide/introduction" class="alert-link">Style Guide</a>.
44
+ <strong>Internal Note</strong>: Need help with the docs? Go to the <a target="_blank" href="https://docs.telerik.com/style-guide/introduction" class="alert-link">Style Guide</a>.
45
45
  </div>
46
46
  <h1>{{title}}</h1>
47
47
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-common-tasks",
3
3
  "description": "Build infrastructure helpers and gulp tasks for Kendo UI Angular 2 / React components",
4
- "version": "7.7.3-dev.6+f518a2e",
4
+ "version": "7.9.1-cdn-bundle.12+90b5187",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/telerik/kendo-build-tasks.git"
@@ -32,7 +32,7 @@
32
32
  "express": "^4.13.4",
33
33
  "express-urlrewrite": "^1.2.0",
34
34
  "extract-text-webpack-plugin": "next",
35
- "file-loader": "^0.8.5",
35
+ "file-loader": "^1.1.6",
36
36
  "glob": "^6.0.4",
37
37
  "graphlib": "2.1.1",
38
38
  "gulp": "^4.0.0",
@@ -90,5 +90,5 @@
90
90
  "publishConfig": {
91
91
  "access": "public"
92
92
  },
93
- "gitHead": "f518a2ea5058b769188cc8da85e0e2864fc26e2c"
93
+ "gitHead": "90b518795c372df38e0df2230ca2f27971a154d7"
94
94
  }
@@ -0,0 +1,57 @@
1
+ // List all external packages that with known global names.
2
+ const knownExternals = {
3
+ "@angular/core": "ng.core",
4
+ "@angular/common": "ng.common",
5
+ "@angular/common/http": "ng.common.http",
6
+ "@angular/compiler": "ng.compiler",
7
+ "@angular/forms": "ng.forms",
8
+ "@angular/platform-browser": "ng.platformBrowser",
9
+ "@angular/platform-browser-dynamic": "ng.platformBrowserDynamic",
10
+ "@angular/animations": "ng.animations",
11
+ "@progress/pako-esm": "pako",
12
+ "@progress/jszip-esm": "JSZip",
13
+ "rxjs": "rxjs",
14
+ "rxjs/operators": "rxjs.operators",
15
+ "tslib": "self"
16
+ };
17
+
18
+ const _ = require('lodash');
19
+ const isProgressPackage = dep => dep.match(/@progress|@telerik/);
20
+ const ucFirst = (str) => str.charAt(0).toUpperCase() + str.slice(1);
21
+ const stripScope = (str) => str.substring((str.indexOf('/') + 1));
22
+ const umdExportName = (libraryName) => _.flow(stripScope, _.camelCase, ucFirst)(libraryName);
23
+
24
+ function toWebpackExternal(module) {
25
+ let externalName = knownExternals[module];
26
+
27
+ if (!externalName && isProgressPackage(module)) {
28
+ externalName = umdExportName(module);
29
+ }
30
+
31
+ if (!externalName) {
32
+ console.warn(`Warning: No known export name for "${module}", including in UMD bundle.`);
33
+ return false;
34
+ }
35
+
36
+ const result = {
37
+ root: externalName.split('.'),
38
+ commonjs: module,
39
+ commonjs2: module
40
+ }
41
+
42
+ return result;
43
+ }
44
+
45
+ function umdExternals(dependencies) {
46
+ const externals = {};
47
+
48
+ dependencies.forEach(module => {
49
+ externals[module] = toWebpackExternal(module);
50
+ });
51
+
52
+ return externals;
53
+ }
54
+
55
+ module.exports = {
56
+ umdExternals
57
+ };