@progress/kendo-package-tasks 5.0.1-dev.5 → 5.0.1
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 +11 -0
- package/package.json +2 -2
- package/webpack.config.js +4 -1
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
|
+
## [5.0.1](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-package-tasks@5.0.0...@progress/kendo-package-tasks@5.0.1) (2025-06-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **package-tasks:** disable buble for karma bundles ([87f7732](https://github.com/telerik/kendo-build-tasks/commit/87f7732c875a1c3de29573a264abd72b11953d4a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [5.0.0](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-package-tasks@4.0.46...@progress/kendo-package-tasks@5.0.0) (2025-03-17)
|
|
7
18
|
|
|
8
19
|
|
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": "5.0.1
|
|
4
|
+
"version": "5.0.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-build-tasks.git"
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "30efa50d4f12477e893170b1dc02b15753b6e007"
|
|
48
48
|
}
|
package/webpack.config.js
CHANGED
|
@@ -102,7 +102,10 @@ module.exports = {
|
|
|
102
102
|
enforce: 'pre',
|
|
103
103
|
test: /\.js$/,
|
|
104
104
|
loader: require.resolve("source-map-loader")
|
|
105
|
-
}
|
|
105
|
+
}, {
|
|
106
|
+
test: /\.css$/,
|
|
107
|
+
use: [ 'style-loader', 'css-loader' ]
|
|
108
|
+
} ]
|
|
106
109
|
},
|
|
107
110
|
stats: { colors: true, reasons: true },
|
|
108
111
|
plugins: [
|