@progress/kendo-common-tasks 7.9.2 → 7.9.4-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.9.2...@progress/kendo-common-tasks@7.9.3) (2022-03-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * exclude rxjs/operators from cdn bundle ([2f3e7eb](https://github.com/telerik/kendo-build-tasks/commit/2f3e7eb4f0b3b787c1aa7b4e9ec3a2e4de23fc89))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [7.9.2](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@7.9.1...@progress/kendo-common-tasks@7.9.2) (2022-03-07)
7
18
 
8
19
 
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.9.2",
4
+ "version": "7.9.4-dev.0+4398b5b",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/telerik/kendo-build-tasks.git"
@@ -90,5 +90,5 @@
90
90
  "publishConfig": {
91
91
  "access": "public"
92
92
  },
93
- "gitHead": "badbe536f5b1bcbbff860dd60a8e71023c191069"
93
+ "gitHead": "4398b5b8d941a95d8da9d3f7a7cd1cb65c933dcb"
94
94
  }
@@ -10,6 +10,7 @@ const knownExternals = {
10
10
  "@angular/animations": "ng.animations",
11
11
  "@progress/pako-esm": "pako",
12
12
  "@progress/jszip-esm": "JSZip",
13
+ "hammerjs": "Hammer",
13
14
  "rxjs": "rxjs",
14
15
  "rxjs/operators": "rxjs.operators",
15
16
  "tslib": "self"
@@ -45,11 +46,14 @@ function toWebpackExternal(module) {
45
46
  function umdExternals(dependencies) {
46
47
  const externals = {};
47
48
 
49
+ // Sub-packages are not listed in the package dependencies,
50
+ // but we need to mark them as external.
48
51
  if (dependencies.includes('@angular/common')) {
49
- // Sub-packages are not listed in the package dependencies,
50
- // but we need to mark them as external.
51
52
  dependencies = [...dependencies, '@angular/common/http'];
52
53
  }
54
+ if (dependencies.includes('rxjs')) {
55
+ dependencies = [...dependencies, 'rxjs/operators'];
56
+ }
53
57
 
54
58
  dependencies.forEach(module => {
55
59
  externals[module] = toWebpackExternal(module);