@eui/tools 6.16.35 → 6.16.36
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/.version.properties +1 -1
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scripts/csdr/init/remotes/18.x/base/angular.esbuild.json +83 -0
- package/scripts/csdr/init/remotes/18.x/base/yarn.lock +8054 -6638
- package/scripts/csdr/init/remotes/18.x/base/yarn.lock.old +14275 -0
- package/scripts/csdr/init/remotes.js +5 -0
|
@@ -99,6 +99,11 @@ module.exports.generateVirtualRemote = (remoteName, cloneRemote = true) => {
|
|
|
99
99
|
tools.logInfo(`Copying base sources => ${remoteSkeletonPath} ==> ${remotePath}`);
|
|
100
100
|
tools.copy(remoteSkeletonPath, remotePath);
|
|
101
101
|
|
|
102
|
+
if (remote.build && remote.build.esbuild) {
|
|
103
|
+
tools.logInfo('Esbuild option detected, replacing angular.json esbuild config');
|
|
104
|
+
tools.move(path.join(remotePath, 'angular.esbuild.json'), path.join(remotePath, 'angular.json'));
|
|
105
|
+
}
|
|
106
|
+
|
|
102
107
|
// adding the dependendies files
|
|
103
108
|
tools.writeJsonFileSync(path.join(remotePath, 'dependencies-composite.json'), remote.dependencies.composite);
|
|
104
109
|
if (remote.dependencies.base) {
|