@eui/tools 6.2.45 → 6.2.47

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.45
1
+ 6.2.47
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.2.47 (2023-01-11)
2
+
3
+ ##### Chores
4
+
5
+ * **build:**
6
+ * revert changes - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([51b23536](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/51b2353643c5cc217d209a3fd1ec2565a735c2b9))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.2.46 (2023-01-11)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **build:**
15
+ * variable scoping for args - EUI-7035 [EUI-7035](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7035) ([67354b2c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/67354b2c079f30926d5f093f6c6f092abde2dec9))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.2.45 (2023-01-09)
2
20
 
3
21
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.45",
3
+ "version": "6.2.47",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -8,6 +8,8 @@ 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
+ // FETCH ARGS
12
+ let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = tools.getArgs();
11
13
 
12
14
  module.exports.build = (pkg, isMaster) => {
13
15
 
@@ -15,9 +17,10 @@ module.exports.build = (pkg, isMaster) => {
15
17
 
16
18
  const ng = path.resolve(process.cwd(), 'node_modules', '@angular', 'cli', 'bin', 'ng');
17
19
 
18
- // FETCH ARGS
19
- let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = pkg.build? pkg.build : tools.getArgs();
20
-
20
+ if (pkg.build) {
21
+ skipLint = pkg.build.skipLint;
22
+ skipTest = pkg.build.skipTest;
23
+ }
21
24
  return Promise.resolve()
22
25
  .then(() => {
23
26
  if (deps === true) {