@eui/tools 4.15.13 → 4.15.14

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
- 4.15.13
1
+ 4.15.14
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 4.15.14 (2021-10-29)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * force skipLint and skipTest on element - EUI-4107 [EUI-4107](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4107) ([51863587](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/51863587c54018fe60bb7b40416a4fb0d4bd2af2))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 4.15.13 (2021-10-28)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "4.15.13",
3
+ "version": "4.15.14",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -24,20 +24,9 @@ module.exports.build = (pkg, isMaster) => {
24
24
  .then(() => {
25
25
  tools.logTitle(`Building element : ${pkg.name}...`);
26
26
 
27
- // getting param from project config
28
- if (pkg.build) {
29
- if (pkg.build.skipLint) {
30
- skipLint = true;
31
- }
32
- if (pkg.build.skipTest) {
33
- skipTest = true;
34
- }
35
- }
36
-
37
- // if (isMaster) {
38
- // skipLint = true;
39
- // skipTest = true;
40
- // }
27
+ // force skipLint and skipTest on element
28
+ skipLint = true;
29
+ skipTest = true;
41
30
  })
42
31
 
43
32
  .then(() => {