@progress/kendo-common-tasks 8.0.1-dev.0 → 8.0.1-dev.11
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/index.js +2 -12
- package/package.json +3 -5
package/index.js
CHANGED
|
@@ -17,7 +17,6 @@ const $ = require('gulp-load-plugins')();
|
|
|
17
17
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
18
18
|
const packageName = require('./package.json').name;
|
|
19
19
|
|
|
20
|
-
const urlLoaderPath = require.resolve('url-loader');
|
|
21
20
|
const verifyModules = require('./verify-modules');
|
|
22
21
|
const systemjsBundle = require('./systemjs-bundle/task');
|
|
23
22
|
const docsServer = require('./docs-server');
|
|
@@ -30,23 +29,14 @@ exports.webpack = webpack;
|
|
|
30
29
|
exports.webpackDevServer = WebpackDevServer;
|
|
31
30
|
exports.webpackStream = webpackStream;
|
|
32
31
|
|
|
33
|
-
const hashedName = "[name].[ext]?[hash]";
|
|
34
32
|
const resourceLoaders = [
|
|
35
33
|
{
|
|
36
34
|
test: /\.(jpe?g|png|gif|svg)$/i,
|
|
37
|
-
|
|
38
|
-
query: {
|
|
39
|
-
name: hashedName,
|
|
40
|
-
limit: 10000
|
|
41
|
-
}
|
|
35
|
+
type: 'asset/inline'
|
|
42
36
|
},
|
|
43
37
|
{
|
|
44
38
|
test: /\.(woff|woff2)$/,
|
|
45
|
-
|
|
46
|
-
query: {
|
|
47
|
-
name: hashedName,
|
|
48
|
-
mimetype: "application/font-woff"
|
|
49
|
-
}
|
|
39
|
+
type: 'asset/inline'
|
|
50
40
|
}
|
|
51
41
|
];
|
|
52
42
|
|
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.1-dev.
|
|
4
|
+
"version": "8.0.1-dev.11+b5276e3",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/telerik/kendo-build-tasks.git"
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@telerik/eslint-config": "1.1.0",
|
|
23
23
|
"acorn": "^8.5.0",
|
|
24
|
+
"ajv": "^8.11.0",
|
|
24
25
|
"autoprefixer": "^6.3.6",
|
|
25
26
|
"babel-core": "^6.0.0",
|
|
26
27
|
"babel-eslint": "^4.1.6",
|
|
@@ -31,7 +32,6 @@
|
|
|
31
32
|
"eslint-plugin-react": "^3.10.0",
|
|
32
33
|
"express": "^4.13.4",
|
|
33
34
|
"express-urlrewrite": "^1.2.0",
|
|
34
|
-
"file-loader": "^1.1.6",
|
|
35
35
|
"glob": "^6.0.4",
|
|
36
36
|
"graphlib": "2.1.1",
|
|
37
37
|
"gulp": "^4.0.0",
|
|
@@ -55,11 +55,9 @@
|
|
|
55
55
|
"mkdirp": "^0.5.0",
|
|
56
56
|
"module-deps": "4.0.7",
|
|
57
57
|
"plugin-error": "^1.0.1",
|
|
58
|
-
"resolve-url-loader": "^1.5.0",
|
|
59
58
|
"serve-index": "^1.7.3",
|
|
60
59
|
"socket.io": "=1.4.5",
|
|
61
60
|
"style-loader": "^0.13.0",
|
|
62
|
-
"url-loader": "^0.5.7",
|
|
63
61
|
"vinyl-named": "^1.1.0",
|
|
64
62
|
"webpack": "5.53.0",
|
|
65
63
|
"webpack-dev-server": "^4.2.1",
|
|
@@ -88,5 +86,5 @@
|
|
|
88
86
|
"publishConfig": {
|
|
89
87
|
"access": "public"
|
|
90
88
|
},
|
|
91
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "b5276e35afc11bf1511c83c2b3bd4ff014d33f40"
|
|
92
90
|
}
|