@zohodesk/client_build_tool 0.0.3 → 0.0.5
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
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog and Release Notes
|
|
2
2
|
|
|
3
|
-
## v0.0.
|
|
3
|
+
## v0.0.5 (6-08-2023)
|
|
4
|
+
|
|
5
|
+
**Changes:--**
|
|
6
|
+
- Typo fix in i18nRuntimeDealerPlugin.js
|
|
7
|
+
- fixing some bugs in resolvers.js file
|
|
8
|
+
|
|
9
|
+
## v0.0.3 (1-08-2023)
|
|
4
10
|
|
|
5
11
|
**Changes:--**
|
|
6
12
|
- `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
|
package/README.md
CHANGED
|
@@ -84,7 +84,13 @@ These commands provide flexibility and control over your client-side build proce
|
|
|
84
84
|
For more [Details](ConfigurationDocumentation.md)
|
|
85
85
|
# Changelog and Release Notes
|
|
86
86
|
|
|
87
|
-
## v0.0.
|
|
87
|
+
## v0.0.5 (6-08-2023)
|
|
88
|
+
|
|
89
|
+
**Changes:--**
|
|
90
|
+
- Typo fix in i18nRuntimeDealerPlugin.js
|
|
91
|
+
- fixing some bugs in resolvers.js file
|
|
92
|
+
|
|
93
|
+
## v0.0.3 (1-08-2023)
|
|
88
94
|
|
|
89
95
|
**Changes:--**
|
|
90
96
|
- `devtool` default value changed from `hidden-cheap-source-map` to `source-map`
|
package/lib/shared/bundler/webpack/custom_plugins/I18nSplitPlugin/I18nRuntimeDealerPlugin.js
CHANGED
|
@@ -190,7 +190,7 @@ class I18nRuntimeDealerPlugin {
|
|
|
190
190
|
for (const entryChunk of entries) {
|
|
191
191
|
const runtimeFileName = [...entryChunk.files][0] || '';
|
|
192
192
|
|
|
193
|
-
if (runtimeFileName.includes('runtime') && runtimeFileName.includes('[
|
|
193
|
+
if (runtimeFileName.includes('runtime') && runtimeFileName.includes('[locale]')) {
|
|
194
194
|
(0, _logger.verboseLogger)('deleteAsset', runtimeFileName);
|
|
195
195
|
compilation.deleteAsset(runtimeFileName);
|
|
196
196
|
}
|
|
@@ -77,5 +77,5 @@ function loaderResolver(options) {
|
|
|
77
77
|
|
|
78
78
|
function useAppNodeModulesAsPreferred(preferLocalFirst = false, paths = []) {
|
|
79
79
|
const filteredPaths = paths.filter(Boolean);
|
|
80
|
-
return preferLocalFirst ? ['node_modules', ...filteredPaths] : [...filteredPaths, 'node_modules'];
|
|
80
|
+
return preferLocalFirst ? ['node_modules', ...filteredPaths, _constants.appNodeModules] : [...filteredPaths, 'node_modules', _constants.appNodeModules];
|
|
81
81
|
}
|
package/lib/shared/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.cliRootPath = exports.cliNodeModulesPath = exports.babelrcPath = exports.appPath = exports.CONFIG_ROOT = exports.BASE_CONFIG_KEY = void 0;
|
|
6
|
+
exports.cliRootPath = exports.cliNodeModulesPath = exports.babelrcPath = exports.appPath = exports.appNodeModules = exports.CONFIG_ROOT = exports.BASE_CONFIG_KEY = void 0;
|
|
7
7
|
exports.getTemplatePath = getTemplatePath;
|
|
8
8
|
exports.joinWithAppPath = joinWithAppPath;
|
|
9
9
|
exports.templatesPath = void 0;
|
|
@@ -36,6 +36,9 @@ function joinWithAppPath(filePath) {
|
|
|
36
36
|
return (0, _path.join)(appPath, filePath);
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
+
;
|
|
40
|
+
const appNodeModules = joinWithAppPath('node_modules');
|
|
41
|
+
exports.appNodeModules = appNodeModules;
|
|
39
42
|
const templatesPath = (0, _path.join)(__dirname, '..', '..', 'templates');
|
|
40
43
|
exports.templatesPath = templatesPath;
|
|
41
44
|
|