@eui/tools 6.2.46 → 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.46
1
+ 6.2.48
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
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
+ * * *
10
+ ## 6.2.47 (2023-01-11)
11
+
12
+ ##### Chores
13
+
14
+ * **build:**
15
+ * 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))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.2.46 (2023-01-11)
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.46",
3
+ "version": "6.2.48",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -8,7 +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
- let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = tools.getArgs();
12
11
 
13
12
  module.exports.build = (pkg, isMaster) => {
14
13
 
@@ -16,10 +15,6 @@ module.exports.build = (pkg, isMaster) => {
16
15
 
17
16
  const ng = path.resolve(process.cwd(), 'node_modules', '@angular', 'cli', 'bin', 'ng');
18
17
 
19
- if (pkg.build) {
20
- skipLint = pkg.build.skipLint;
21
- skipTest = pkg.build.skipTest;
22
- }
23
18
  // FETCH ARGS
24
19
  let { deps, skipClean, skipLint, skipTest, skipCompile, skipDoc } = pkg.build? pkg.build : tools.getArgs();
25
20