@oroinc/oro-webpack-config-builder 6.1.0-lts14 → 6.1.0-lts15
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
CHANGED
|
@@ -612,6 +612,7 @@ class ConfigBuilder {
|
|
|
612
612
|
|
|
613
613
|
_initialize(args, env) {
|
|
614
614
|
const entryPointFileWriter = new EntryPointFileWriter(this._publicPath);
|
|
615
|
+
|
|
615
616
|
this._isProduction = args.mode === 'production';
|
|
616
617
|
this._symfonyEnv = env.symfony;
|
|
617
618
|
this._appConfig = AppConfigLoader.getConfig(this._cachePath, this._symfonyEnv);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oroinc/oro-webpack-config-builder",
|
|
3
|
-
"version": "6.1.0-
|
|
3
|
+
"version": "6.1.0-lts15",
|
|
4
4
|
"author": "Oro, Inc. (https://oroinc.com)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "An integration of OroPlatform based applications with the Webpack.",
|
|
@@ -13,14 +13,12 @@
|
|
|
13
13
|
"autoprefixer": "~10.4.13",
|
|
14
14
|
"babel-loader": "~9.1.0",
|
|
15
15
|
"bindings": "~1.5.0",
|
|
16
|
-
"colorette": "^2.0.20",
|
|
17
16
|
"css-loader": "^6.8.1",
|
|
18
17
|
"css-minimizer-webpack-plugin": "~5.0.0",
|
|
19
18
|
"deepmerge": "~4.3.1",
|
|
20
|
-
"enhanced-resolve": "^5.18.1",
|
|
21
|
-
"esbuild-loader": "^4.3.0",
|
|
22
19
|
"exports-loader": "~4.0.0",
|
|
23
20
|
"expose-loader": "~4.1.0",
|
|
21
|
+
"esbuild-loader": "^4.3.0",
|
|
24
22
|
"file-loader": "~6.2.0",
|
|
25
23
|
"html-webpack-plugin": "~5.5.0",
|
|
26
24
|
"imports-loader": "~4.0.1",
|
|
@@ -28,11 +28,11 @@ class IntegrityFilePlugin {
|
|
|
28
28
|
];
|
|
29
29
|
})
|
|
30
30
|
);
|
|
31
|
-
const jsonData = JSON.stringify(integrityData, null, 2);
|
|
32
|
-
const outputPath = path.join(this.publicPath, compiler.options.output.publicPath, this.fileName);
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
compilation.emitAsset(
|
|
33
|
+
this.fileName,
|
|
34
|
+
new sources.RawSource(JSON.stringify(integrityData, null, 2))
|
|
35
|
+
);
|
|
36
36
|
}
|
|
37
37
|
);
|
|
38
38
|
});
|
|
@@ -4,7 +4,7 @@ class SvgIconsSchemaError extends BaseError {
|
|
|
4
4
|
/**
|
|
5
5
|
* @example
|
|
6
6
|
* Invalid Theme config: the "theme.yml" files in the "default" theme do not match the API schema.
|
|
7
|
-
* has an unknown property '
|
|
7
|
+
* has an unknown property 'label'.
|
|
8
8
|
* at default/theme.yml
|
|
9
9
|
*
|
|
10
10
|
* @example
|