@eui/tools 6.2.47 → 6.2.48

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