@eui/tools 6.2.46 → 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.46
1
+ 6.2.47
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
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
+ * * *
1
10
  ## 6.2.46 (2023-01-11)
2
11
 
3
12
  ##### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.2.46",
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,7 @@ 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
11
12
  let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = tools.getArgs();
12
13
 
13
14
  module.exports.build = (pkg, isMaster) => {
@@ -20,9 +21,6 @@ module.exports.build = (pkg, isMaster) => {
20
21
  skipLint = pkg.build.skipLint;
21
22
  skipTest = pkg.build.skipTest;
22
23
  }
23
- // FETCH ARGS
24
- let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = pkg.build? pkg.build : tools.getArgs();
25
-
26
24
  return Promise.resolve()
27
25
  .then(() => {
28
26
  if (deps === true) {