@eui/tools 5.3.35 → 5.3.36

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
- 5.3.35
1
+ 5.3.36
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 5.3.36 (2022-07-14)
2
+
3
+ ##### Bug Fixes
4
+
5
+ * **other:**
6
+ * wrong tslint call on package build - EUI-4106 [EUI-4106](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-4106) ([c2651cb0](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/c2651cb0f6262e2c38e3b46e0c66787cbc8e7d92))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 5.3.35 (2022-07-14)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "5.3.35",
3
+ "version": "5.3.36",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
package/sandbox.js CHANGED
@@ -877,6 +877,6 @@ const versionUtils = require('./scripts/csdr/version/version-utils');
877
877
 
878
878
  Promise.resolve()
879
879
  .then(() => {
880
- const prj = configUtils.projects.getProject('my-workplace-host-playground');
881
- console.log(prj);
880
+ const pkg = configUtils.packages.getPackage('eui', true);
881
+ console.log(pkg);
882
882
  })
@@ -51,8 +51,8 @@ module.exports.build = (pkg, isMaster) => {
51
51
  if (tools.isFileExists(tsLintPath)) {
52
52
  // TODO: remove TSLint since it's deprecated and should not be used by projects in the future
53
53
  tools.logWarning('TSLint is deprecated and will be removed in the future. Consider migrating to ESLint')
54
- const script = `running tslint -c ${tsLintPath} -p ${pkg.paths.tsConfig} -t verbose`
55
- tools.logInfo(script);
54
+ const script = `tslint -c ${tsLintPath} -p ${pkg.paths.tsConfig} -t verbose`
55
+ tools.logInfo(`running ${script}`);
56
56
  return tools.runScript(script);
57
57
  } else if(tools.isFileExists(esLintPath)) {
58
58
  // the project path information are located inside the .eslintrc.json