@eui/tools 6.12.7 → 6.12.8

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.
@@ -1 +1 @@
1
- 6.12.7
1
+ 6.12.8
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.12.8 (2023-06-19)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * remove browserlist injection for remote - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([1c7c5098](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/1c7c5098298b9b80bab40b1908321738ebb01523))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.12.7 (2023-06-19)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.7",
3
+ "version": "6.12.8",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -127,17 +127,6 @@ module.exports.initRemoteFilesAndResolutions = (packageJsonPath, euiVersion) =>
127
127
  tools.logInfo('euiVersion not found skippint yarn.lock replacement');
128
128
 
129
129
  } else {
130
- tools.logInfo(`Processing .browserlistrc replacement for eUI version found : ${euiVersion}`);
131
-
132
- const blResourcesFile = path.join(__dirname, 'resources', euiVersion, 'browserslistrc');
133
- const blDestFile = path.join(packageJsonPath, '.browserslistrc');
134
-
135
- if (tools.isFileExists(blResourcesFile)) {
136
- tools.copy(blResourcesFile, blDestFile);
137
- } else {
138
- tools.logInfo('Not found...skipping');
139
- }
140
-
141
130
  tools.logInfo(`Processing yarn.lock replacement for eUI version found : ${euiVersion}`);
142
131
 
143
132
  if (registry) {