@progress/kendo-package-tasks 4.0.32-dev.3 → 4.0.34-dev.6

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,25 @@
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
+ ## [4.0.33](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-package-tasks@4.0.32...@progress/kendo-package-tasks@4.0.33) (2021-12-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **package-tasks:** build concurrency ([e32f863](https://github.com/telerik/kendo-build-tasks/commit/e32f86347c5b7dbdc7809950a58321137c5e2da5))
12
+
13
+
14
+
15
+
16
+
17
+ ## [4.0.32](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-package-tasks@4.0.31...@progress/kendo-package-tasks@4.0.32) (2021-12-03)
18
+
19
+ **Note:** Version bump only for package @progress/kendo-package-tasks
20
+
21
+
22
+
23
+
24
+
6
25
  ## [4.0.31](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-package-tasks@4.0.30...@progress/kendo-package-tasks@4.0.31) (2021-11-09)
7
26
 
8
27
  **Note:** Version bump only for package @progress/kendo-package-tasks
package/gulp-tasks.js CHANGED
@@ -25,7 +25,6 @@ const webpackStream = require('webpack-stream');
25
25
  const startKarma = require('./start-karma.js');
26
26
  module.exports = function(gulp, libraryName, options) {
27
27
  const series = gulp.series;
28
- const parallel = gulp.parallel;
29
28
 
30
29
  if (options && options.packageExternals) {
31
30
  webpackConfig.npmPackage.externals = webpackConfig.npmPackage.externals.concat(options.packageExternals);
@@ -103,7 +102,7 @@ module.exports = function(gulp, libraryName, options) {
103
102
  .pipe(gulp.dest('dist/npm'))
104
103
  ));
105
104
 
106
- gulp.task('cjs-bundle', parallel('clean-cjs-bundle', 'bundle-typings', () => {
105
+ gulp.task('cjs-bundle', series('clean-cjs-bundle', 'bundle-typings', () => {
107
106
  const tasks = entries.map((entry) =>
108
107
  rollup({
109
108
  entry: 'src/' + entry,
@@ -120,7 +119,7 @@ module.exports = function(gulp, libraryName, options) {
120
119
  return merge(tasks);
121
120
  }));
122
121
 
123
- gulp.task('build-module', parallel('es-bundle', 'es2015-bundle', 'cjs-bundle', 'build-systemjs-bundle' ));
122
+ gulp.task('build-module', series('es-bundle', 'es2015-bundle', 'cjs-bundle', 'build-systemjs-bundle' ));
124
123
 
125
124
  // Alias for backwards-compatibility
126
125
  gulp.task('build-rollup-package', series('build-module'));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-package-tasks",
3
3
  "description": "An utility package exporting gulp tasks for Kendo UI NPM packages",
4
- "version": "4.0.32-dev.3+d68dd96",
4
+ "version": "4.0.34-dev.6+bd7ee38",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/telerik/kendo-build-tasks.git"
@@ -14,7 +14,7 @@
14
14
  "Kendo UI"
15
15
  ],
16
16
  "dependencies": {
17
- "@progress/kendo-common-tasks": "^7.8.1-dev.3+d68dd96",
17
+ "@progress/kendo-common-tasks": "^7.9.1-dev.8+bd7ee38",
18
18
  "@telerik/eslint-config": "^1.1.0",
19
19
  "buble": "^0.20.0",
20
20
  "buble-loader": "^0.5.1",
@@ -52,5 +52,5 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "d68dd96e7406dd5eb4cd1684da023f548e414591"
55
+ "gitHead": "bd7ee38731bff7c723427f0c61b9d2b7fdb8f001"
56
56
  }