@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.
@@ -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) {