@eui/tools 6.2.44 → 6.2.45

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.2.44
1
+ 6.2.45
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.2.45 (2023-01-09)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **build:**
6
+ * variable scoping for args - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([c16f97ee](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c16f97eeebdaa2a012135ee16f22a0915f64e582))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.2.44 (2022-12-08)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.44",
3
+ "version": "6.2.45",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -8,11 +8,6 @@ const execa = require('execa');
8
8
  const tools = require('../../tools');
9
9
  const notificationUtils = require('../../notification/notification-utils');
10
10
  const cleanUtils = require('../../clean/clean-utils');
11
- const configUtils = require('../../../csdr/config/config-utils');
12
-
13
- // FETCH ARGS
14
- let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = tools.getArgs();
15
-
16
11
 
17
12
  module.exports.build = (pkg, isMaster) => {
18
13
 
@@ -20,14 +15,8 @@ module.exports.build = (pkg, isMaster) => {
20
15
 
21
16
  const ng = path.resolve(process.cwd(), 'node_modules', '@angular', 'cli', 'bin', 'ng');
22
17
 
23
- if (pkg.build) {
24
- if (pkg.build.skipLint) {
25
- skipLint = true;
26
- }
27
- if (pkg.build.skipTest) {
28
- skipTest = true;
29
- }
30
- }
18
+ // FETCH ARGS
19
+ let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = pkg.build? pkg.build : tools.getArgs();
31
20
 
32
21
  return Promise.resolve()
33
22
  .then(() => {