@eui/tools 5.3.47 → 5.3.48

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
- 5.3.47
1
+ 5.3.48
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.3.48 (2022-09-15)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * master build of package take snapshots as dependencies - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([fc0fca99](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/fc0fca99b916e2f7fe4cd147c73452395bbf363d))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.3.47 (2022-09-15)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.47",
3
+ "version": "5.3.48",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -10,11 +10,11 @@ const innerRemotes = require('./remotes');
10
10
 
11
11
 
12
12
 
13
- module.exports.installPackage = (prj, pkg) => {
13
+ module.exports.installPackage = (prj, pkg, isMaster) => {
14
14
  return Promise.resolve()
15
15
  // checking remotes
16
16
  .then(() => {
17
- return innerPackages.installDeps(prj, pkg);
17
+ return innerPackages.installDeps(prj, pkg, isMaster);
18
18
  })
19
19
 
20
20
  // returning metadata dependencies
@@ -14,7 +14,7 @@ const innerCommon = require('./common');
14
14
  const innerProjects = require('./projects');
15
15
 
16
16
 
17
- module.exports.installDeps = (prj, pkg) => {
17
+ module.exports.installDeps = (prj, pkg, isMaster) => {
18
18
  let compositeDeps, localPkgDeps, localPkgCompositeDeps;
19
19
 
20
20
  return Promise.resolve()
@@ -62,7 +62,7 @@ module.exports.installDeps = (prj, pkg) => {
62
62
  })
63
63
 
64
64
  .then((depsMetadata) => {
65
- return innerCommon.getRemappedDeps(depsMetadata, localPkgCompositeDeps);
65
+ return innerCommon.getRemappedDeps(depsMetadata, localPkgCompositeDeps, isMaster);
66
66
  })
67
67
 
68
68
  .then((remappedLocalPkgCompositeDeps) => {
@@ -91,7 +91,7 @@ module.exports.run = () => {
91
91
  // return innerBackend.install(pkg);
92
92
 
93
93
  } else {
94
- return innerUi.install(pkg);
94
+ return innerUi.install(pkg, branches.isMaster);
95
95
  }
96
96
  })
97
97
  .then((compositeDeps) => {
@@ -3,8 +3,12 @@
3
3
  // GLOBAL
4
4
  const path = require('path');
5
5
  const installUtils = require('../../install/install-utils');
6
+ const tools = require('../../../utils/tools');
7
+
6
8
 
7
9
  module.exports.install = (pkg, envTarget, compositeType) => {
10
+ tools.logBanner('INSTALL');
11
+
8
12
  var pkgCompositeDeps = {};
9
13
 
10
14
  return Promise.resolve()
@@ -12,7 +12,9 @@ const notificationUtils = require('../../../utils/notification/notification-util
12
12
  const tools = require('../../../utils/tools');
13
13
 
14
14
 
15
- module.exports.install = (pkg) => {
15
+ module.exports.install = (pkg, isMaster) => {
16
+ tools.logBanner('INSTALL');
17
+
16
18
  return Promise.resolve()
17
19
 
18
20
  // FETCHING CURRENT PACKAGES & INSTALL
@@ -21,7 +23,7 @@ module.exports.install = (pkg) => {
21
23
  const prj = configUtils.projects.getProject();
22
24
 
23
25
  // install the dependencies for current package build
24
- return installUtils.buildPackage.installPackage(prj, pkg);
26
+ return installUtils.buildPackage.installPackage(prj, pkg, isMaster);
25
27
  })
26
28
 
27
29