@eo-sdk/client 8.16.0-rc.3 → 8.16.0-rc.4

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,4 +1,4 @@
1
- var moment = require('moment');
1
+ const moment = require('moment');
2
2
 
3
3
  module.exports = {
4
4
  getResourceName: getResourceName,
@@ -18,10 +18,12 @@ function getResourceName() {
18
18
  }
19
19
 
20
20
  function getArtifactName() {
21
- var resourceName = getResourceName();
22
- var baseName = resourceName === 'client' ? 'enaio_redline_client' : resourceName;
21
+ const resourceName = getResourceName();
22
+ if(resourceName === 'client') {
23
+ return 'client.zip';
24
+ }
23
25
 
24
- return baseName + '_' + getVersion() + '.zip';
26
+ return resourceName + '_' + getVersion() + '.zip';
25
27
  }
26
28
 
27
29
  function getVersion() {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@eo-sdk/client",
3
3
  "description": "yuuvis RAD client",
4
4
  "author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
5
- "version": "8.16.0-rc.3",
5
+ "version": "8.16.0-rc.4",
6
6
  "main": "bundles/eo-sdk-client.umd.js",
7
7
  "license": "MIT",
8
8
  "angular-cli": {},
@@ -29,7 +29,7 @@
29
29
  "@angular/platform-browser": "11.2.0",
30
30
  "@angular/platform-browser-dynamic": "11.2.0",
31
31
  "@angular/router": "11.2.0",
32
- "@eo-sdk/core": "8.16.0-rc.3",
32
+ "@eo-sdk/core": "8.16.0-rc.4",
33
33
  "@ngx-pwa/local-storage": "11.1.0",
34
34
  "@ngx-translate/core": "13.0.0",
35
35
  "@types/lodash": "4.14.88",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eo-sdk/client/projects/eo-sdk/core",
3
- "version": "8.16.0-rc.3",
3
+ "version": "8.16.0-rc.4",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "peerDependencies": {