@eui/tools 6.2.29 → 6.2.31
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.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/sandbox.js +9 -6
- package/scripts/csdr/release/package/ui.js +3 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.2.
|
|
1
|
+
6.2.31
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.2.31 (2022-11-16)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* added skipAudit flag - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([5641d51a](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/5641d51a671d0193bad5253c92ead493a09afe52))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.2.30 (2022-11-16)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* added skipAudit flag for preventing styles audit on some eUI packages - EUI-6448 [EUI-6448](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-6448) ([d991f0cf](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d991f0cf75a92d3c827965c7d6dd42352e5c1aa7))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.2.29 (2022-11-15)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
package/sandbox.js
CHANGED
|
@@ -1059,11 +1059,14 @@ const versionUtils = require('./scripts/csdr/version/version-utils');
|
|
|
1059
1059
|
|
|
1060
1060
|
Promise.resolve()
|
|
1061
1061
|
.then(() => {
|
|
1062
|
-
const prjName = 'my-workplace-host';
|
|
1063
|
-
const prj = configUtils.projects.getCsdrProject(prjName);
|
|
1062
|
+
// const prjName = 'my-workplace-host';
|
|
1063
|
+
// const prj = configUtils.projects.getCsdrProject(prjName);
|
|
1064
1064
|
|
|
1065
|
-
return installUtils.projects.getLocalProjectFixedDeps(prj);
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
console.log(
|
|
1065
|
+
// return installUtils.projects.getLocalProjectFixedDeps(prj);
|
|
1066
|
+
|
|
1067
|
+
const pkg = configUtils.packages.getPackage('ppxms-process-manager-ui', true);
|
|
1068
|
+
console.log(pkg);
|
|
1069
|
+
if (!pkg.build || (pkg.build && !pkg.build.skipAudit)) {
|
|
1070
|
+
console.log('test');
|
|
1071
|
+
}
|
|
1069
1072
|
})
|
|
@@ -32,7 +32,9 @@ module.exports.install = (pkg, isMaster) => {
|
|
|
32
32
|
|
|
33
33
|
// CHECK STYLES USAGE
|
|
34
34
|
.then(() => {
|
|
35
|
-
|
|
35
|
+
if (!pkg.build || (pkg.build && !pkg.build.skipAudit)) {
|
|
36
|
+
return auditUtils.styles.audit(pkg);
|
|
37
|
+
}
|
|
36
38
|
})
|
|
37
39
|
|
|
38
40
|
// AUDIT DEPENDENCIES
|