@eui/tools 6.12.18 → 6.12.20

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.18
1
+ 6.12.20
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.12.20 (2023-06-25)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * save stylesAuditReport into metadata for later processing - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([513f7776](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/513f77763e9d980de2c8fbca3dd0bfd05973e217))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.12.19 (2023-06-24)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * license key injection (debug) - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([6ee4b04d](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/6ee4b04dbd3115271a49b2035b2eae80238781f2))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.12.18 (2023-06-24)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.12.18",
3
+ "version": "6.12.20",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -6,9 +6,11 @@ if (environment.production) {
6
6
  enableProdMode();
7
7
  }
8
8
 
9
+ const LICENSE_KEY = 'LICENSE_KEY_VALUE';
10
+
9
11
  import { LicenseManager } from 'ag-grid-enterprise';
10
12
  // tslint:disable-next-line
11
- LicenseManager.setLicenseKey(@ag-grid-license@);
13
+ LicenseManager.setLicenseKey(LICENSE_KEY);
12
14
 
13
15
  platformBrowserDynamic()
14
16
  .bootstrapModule(AppModule)
@@ -6,6 +6,8 @@ if (environment.production) {
6
6
  enableProdMode();
7
7
  }
8
8
 
9
+ const LICENSE_KEY = 'LICENSE_KEY_VALUE';
10
+
9
11
  import { LicenseManager } from 'ag-grid-enterprise';
10
12
  // tslint:disable-next-line
11
13
  LicenseManager.setLicenseKey(LICENSE_KEY);
@@ -203,7 +203,11 @@ module.exports.installDeps = (pkg, envTarget, compositeType) => {
203
203
 
204
204
  const mainTsPath = path.join(pkg.paths.src, 'main.ts');
205
205
  console.log(`replacing in ${mainTsPath}`);
206
- tools.replaceInFileSync(mainTsPath, 'LICENSE_KEY', license);
206
+ tools.replaceInFileSync(mainTsPath, 'LICENSE_KEY_VALUE', license);
207
+
208
+ tools.logInfo('main.ts content after replacement : ');
209
+ const mainTsContent = tools.getFileContent(mainTsPath);
210
+ console.log(mainTsContent);
207
211
 
208
212
  tools.logSuccess('OK => main.ts replaced');
209
213
  })
@@ -8,7 +8,7 @@ const moment = require('moment');
8
8
  const tools = require('../../utils/tools');
9
9
  const configUtils = require('../config/config-utils');
10
10
 
11
-
11
+ const { dryRun } = tools.getArgs();
12
12
 
13
13
 
14
14
  module.exports.getMetadata = (pkg) => {
@@ -92,7 +92,15 @@ module.exports.storeMetadata = (pkg, pkgVersion, pkgCompositeDeps, duration, env
92
92
  generatedMetadata.versions = versions;
93
93
 
94
94
  tools.logInfo(`Write metadata on ${pkgMetadataFile}`);
95
- tools.writeJsonFileSync(pkgMetadataFile, generatedMetadata);
95
+
96
+ if (dryRun) {
97
+ tools.logInfo('DRY RUN...outputing newVersionMetadata');
98
+ console.log(newVersionMetadata);
99
+
100
+ } else {
101
+ tools.writeJsonFileSync(pkgMetadataFile, generatedMetadata);
102
+ }
103
+
96
104
  })
97
105
 
98
106
  .catch((e) => {
@@ -17,9 +17,6 @@ const { dryRun, nexusUser, nexusPassword } = tools.getArgs();
17
17
  const writePackageJsonCore = (newVersion, folder, isSnapshot, isNextBranch, isSupportBranch, isHotfixBranch, envTarget) => {
18
18
  return Promise.resolve()
19
19
  .then(() => {
20
- const pkgJsonFile = path.resolve(folder, 'package.json');
21
- const pkgJson = require(pkgJsonFile);
22
-
23
20
  let tag;
24
21
 
25
22
  if (isSnapshot) {
@@ -32,12 +29,17 @@ const writePackageJsonCore = (newVersion, folder, isSnapshot, isNextBranch, isSu
32
29
  tag = 'latest';
33
30
  }
34
31
 
35
- pkgJson.version = newVersion;
36
- pkgJson.tag = tag;
32
+ if (dryRun) {
33
+ tools.logInfo(`Updating package.json with : newVersion: ${newVersion} - tag: ${tag}`);
34
+
35
+ } else {
36
+ const pkgJsonFile = path.resolve(folder, 'package.json');
37
+ const pkgJson = require(pkgJsonFile);
37
38
 
38
- tools.logInfo(`Updating package version : ${newVersion} / tag: ${tag} for ${pkgJsonFile}`);
39
+ pkgJson.version = newVersion;
40
+ pkgJson.tag = tag;
39
41
 
40
- if (!dryRun) {
42
+ tools.logInfo(`Updating package version : ${newVersion} / tag: ${tag} for ${pkgJsonFile}`);
41
43
  tools.writeJsonFileSync(pkgJsonFile, pkgJson);
42
44
  }
43
45
  })
@@ -119,9 +119,6 @@ module.exports.build = (pkg, isMaster) => {
119
119
  }
120
120
 
121
121
  })
122
- .then(() => {
123
- tools.logSuccess();
124
- })
125
122
  .catch((e) => {
126
123
  throw e;
127
124
  })