@progress/kendo-common-tasks 8.0.4-dev.8 → 8.0.4
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 +12 -0
- package/docs-public/docs.css +0 -1
- package/docs-public/docs.scss +0 -1
- package/index.js +18 -14
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [8.0.4](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@8.0.3...@progress/kendo-common-tasks@8.0.4) (2023-08-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* docs examples width ([a0c6396](https://github.com/telerik/kendo-build-tasks/commit/a0c6396b11f33f8032b90a6c5da25d9cfdbc4c86))
|
|
12
|
+
* webpack configuration for gulp start ([aaa72af](https://github.com/telerik/kendo-build-tasks/commit/aaa72af7ea6a13516802a8ddb10fe391e46057f1))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [8.0.3](https://github.com/telerik/kendo-build-tasks/compare/@progress/kendo-common-tasks@8.0.2...@progress/kendo-common-tasks@8.0.3) (2022-08-22)
|
|
7
19
|
|
|
8
20
|
|
package/docs-public/docs.css
CHANGED
package/docs-public/docs.scss
CHANGED
package/index.js
CHANGED
|
@@ -97,6 +97,9 @@ const webpackCommonConfig = (_settings, _webpackConfig) => {
|
|
|
97
97
|
options.stubResources ? stubLoader : resourceLoaders
|
|
98
98
|
])),
|
|
99
99
|
noParse: (webpackConfig.module || {}).noParse
|
|
100
|
+
},
|
|
101
|
+
performance: {
|
|
102
|
+
hints: false
|
|
100
103
|
}
|
|
101
104
|
});
|
|
102
105
|
};
|
|
@@ -233,7 +236,7 @@ exports.addTasks = (gulp, libraryName, srcGlob, webpackConfig, dtsGlob, options
|
|
|
233
236
|
.pipe(gulp.dest('dist/cdn'));
|
|
234
237
|
}));
|
|
235
238
|
|
|
236
|
-
gulp.task("start", (
|
|
239
|
+
gulp.task("start", async() => {
|
|
237
240
|
const webpackPort = 3000;
|
|
238
241
|
const host = listenAddress;
|
|
239
242
|
|
|
@@ -261,21 +264,22 @@ exports.addTasks = (gulp, libraryName, srcGlob, webpackConfig, dtsGlob, options
|
|
|
261
264
|
modules: [ path.join(process.cwd(), 'node_modules') ]
|
|
262
265
|
});
|
|
263
266
|
|
|
264
|
-
const server = new WebpackDevServer(
|
|
265
|
-
contentBase: './',
|
|
266
|
-
publicPath: '/dev-server',
|
|
267
|
+
const server = new WebpackDevServer({
|
|
267
268
|
hot: true,
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
269
|
+
allowedHosts: 'all',
|
|
270
|
+
host,
|
|
271
|
+
port: webpackPort,
|
|
272
|
+
static: {
|
|
273
|
+
directory: './',
|
|
274
|
+
publicPath: '/'
|
|
275
|
+
},
|
|
276
|
+
devMiddleware: {
|
|
277
|
+
publicPath: '/dev-server',
|
|
278
|
+
stats: 'errors-only'
|
|
277
279
|
}
|
|
278
|
-
});
|
|
280
|
+
}, webpack(config));
|
|
281
|
+
|
|
282
|
+
await server.start();
|
|
279
283
|
});
|
|
280
284
|
lintSlugsTask(gulp, packageName);
|
|
281
285
|
|
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": "8.0.4
|
|
4
|
+
"version": "8.0.4",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/telerik/kendo-build-tasks.git"
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"publishConfig": {
|
|
86
86
|
"access": "public"
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "32718968e9a7123983fd4145e06b8606df778811"
|
|
89
89
|
}
|