@eui/tools 5.0.0-rc.16 → 5.0.0-rc.17

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.0.0-rc.16
1
+ 5.0.0-rc.17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.0.0-rc.17 (2022-03-31)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * export of app_target - EUI-5632 [EUI-5632](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-5632) ([2452d13b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/2452d13b517f261642079795721af154991c9c88))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.0.0-rc.16 (2022-03-31)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.0.0-rc.16",
3
+ "version": "5.0.0-rc.17",
4
4
  "tag": "next",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -474,7 +474,7 @@ module.exports.exportPipelineVariables = (pkg) => {
474
474
  utils.tools.logWarning('dryRun...skipping export');
475
475
  } else {
476
476
  utils.tools.logInfo('Exporting appTarget variable');
477
- return utils.pipeline.setVariables(pkg.paths.rootDirectory, `export APP_TARGET=${pkg.build.appTarget}\n`);
477
+ return utils.pipeline.setVariables(pkg.paths.rootDirectory, `export APP_TARGET=${appTarget}\n`);
478
478
  }
479
479
  }
480
480
  })