@eui/tools 5.3.0 → 5.3.3

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.0
1
+ 5.3.3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 5.3.3 (2022-05-31)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * app with masterBranchOnly build - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([d66e3076](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d66e3076fc4f90adc11fc59b3d8068995537c237))
7
+
8
+ * * *
9
+ * * *
10
+ ## 5.3.2 (2022-05-31)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * typo in standalone build part - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([180bce21](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/180bce21a29deb9cae6687aa74e1f821e80e6533))
16
+
17
+ * * *
18
+ * * *
19
+ ## 5.3.1 (2022-05-31)
20
+
21
+ ##### Bug Fixes
22
+
23
+ * **other:**
24
+ * console log wrong declaration - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([beb3c4f3](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/beb3c4f35325569e42630dcd8e5b483d40254d0f))
25
+
26
+ * * *
27
+ * * *
1
28
  ## 5.3.0 (2022-05-31)
2
29
 
3
30
  ##### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.0",
3
+ "version": "5.3.3",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -11,7 +11,7 @@ module.exports.install = (prj, envTarget, compositeType) => {
11
11
  return Promise.resolve()
12
12
  // checking remotes
13
13
  .then(() => {
14
- if (prj.standAlone) {
14
+ if (prj.standalone) {
15
15
  return innerProjects.installDepsStandalone(prj);
16
16
  } else {
17
17
  return innerProjects.installDeps(prj, envTarget, compositeType);
@@ -344,7 +344,9 @@ module.exports.run = () => {
344
344
  // for env-target based builds, no need to merge anything back as it only contains a master branch for sources
345
345
  if (!envTarget) {
346
346
  if (!isSnapshot && !isSupportBranch && !isSupportSnapshotBranch) {
347
- return utils.git.mergeMasterToDevelop(project, project.folder);
347
+ if (project.build && !project.build.masterBranchOnly) {
348
+ return utils.git.mergeMasterToDevelop(project, project.folder);
349
+ }
348
350
  }
349
351
  }
350
352
  })
@@ -127,11 +127,9 @@ function relativeCopyEol(fileGlob, from, to) {
127
127
  function copydir(from, to, overwrite = true, globPattern = '**/*') {
128
128
  logInfo('----->copydir from : ' + from + ' ====> to : ' + to );
129
129
  var files = glob.sync(globPattern, { cwd: from, nodir: true, follow: true, dot: true });
130
- console.log(files);
131
130
  files.forEach(file => {
132
131
  const origin = path.join(from, file);
133
132
  const dest = path.join(to, file);
134
- console.logt(origin, dest);
135
133
  _recursiveMkDir(path.dirname(dest));
136
134
  fse.copySync(origin, dest, { overwrite: overwrite });
137
135
  });