@progress/kendo-package-tasks 4.0.31-dev.6 → 4.0.33-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 +16 -0
- package/gulp-tasks.js +2 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.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)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @progress/kendo-package-tasks
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [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)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @progress/kendo-package-tasks
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [4.0.30](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-package-tasks@4.0.29...@progress/kendo-package-tasks@4.0.30) (2021-10-08)
|
|
7
23
|
|
|
8
24
|
**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',
|
|
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',
|
|
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.
|
|
4
|
+
"version": "4.0.33-dev.0+e32f863",
|
|
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.
|
|
17
|
+
"@progress/kendo-common-tasks": "^7.9.0",
|
|
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": "
|
|
55
|
+
"gitHead": "e32f86347c5b7dbdc7809950a58321137c5e2da5"
|
|
56
56
|
}
|