@oroinc/oro-webpack-config-builder 5.1.0-dev003 → 5.1.0-dev005
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/oro-webpack-config.js +5 -0
- package/package.json +5 -4
package/oro-webpack-config.js
CHANGED
|
@@ -28,6 +28,7 @@ const EventEmitter = require('events');
|
|
|
28
28
|
const ErrorHandler = require('./error-handler');
|
|
29
29
|
|
|
30
30
|
require('resolve-url-loader');
|
|
31
|
+
require('lezer-loader');
|
|
31
32
|
|
|
32
33
|
class ConfigBuilder {
|
|
33
34
|
constructor() {
|
|
@@ -352,6 +353,10 @@ class ConfigBuilder {
|
|
|
352
353
|
publicPath: '../../_static/',
|
|
353
354
|
name: this._getVersionedPath('[path][name].[ext]', this.assetVersion)
|
|
354
355
|
}
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
test: /\.grammar$/,
|
|
359
|
+
use: 'lezer-loader',
|
|
355
360
|
}
|
|
356
361
|
]
|
|
357
362
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oroinc/oro-webpack-config-builder",
|
|
3
|
-
"version": "5.1.0-
|
|
3
|
+
"version": "5.1.0-dev005",
|
|
4
4
|
"author": "Oro, Inc (https://www.oroinc.com)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "An integration of OroPlatform based applications with the Webpack.",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"minimist": "~1.2.7",
|
|
26
26
|
"nan": "~2.17.0",
|
|
27
27
|
"path": "0.12.7",
|
|
28
|
-
"postcss": "~8.4.
|
|
28
|
+
"postcss": "~8.4.23",
|
|
29
29
|
"postcss-loader": "~7.2.4",
|
|
30
30
|
"printf": "~0.6.0",
|
|
31
31
|
"resolve-url-loader": "^5.0.0",
|
|
@@ -38,11 +38,12 @@
|
|
|
38
38
|
"text-loader": "0.0.1",
|
|
39
39
|
"underscore": "1.13.*",
|
|
40
40
|
"url-loader": "~4.1.1",
|
|
41
|
-
"webpack": "~5.
|
|
41
|
+
"webpack": "~5.80.0",
|
|
42
42
|
"webpack-bundle-analyzer": "~4.8.0",
|
|
43
43
|
"webpack-cli": "~5.0.0",
|
|
44
44
|
"webpack-dev-server": "^4.11.1",
|
|
45
45
|
"webpack-merge": "~5.8.0",
|
|
46
|
-
"wildcard": "~2.0.0"
|
|
46
|
+
"wildcard": "~2.0.0",
|
|
47
|
+
"lezer-loader": "^0.3.0"
|
|
47
48
|
}
|
|
48
49
|
}
|