@devopness/sdk-js 2.44.0 → 2.44.1

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.
Files changed (2) hide show
  1. package/README.md +12 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -49,7 +49,7 @@ async function authenticate(email, pass) {
49
49
  authenticate('user@email.com', 'secret-password');
50
50
  ```
51
51
 
52
- In the example above, `userTokens` is an instance of `ApiResponse` and the `data` property has the data requested from the API. See [ApiResponse.ts](https://github.com/devopness/devopness/blob/master/src/common/ApiResponse.ts) for reference.
52
+ In the example above, `userTokens` is an instance of `ApiResponse` and the `data` property has the data requested from the API. See [ApiResponse.ts](https://github.com/devopness/devopness/blob/main/packages/sdks/javascript/src/common/ApiResponse.ts) for reference.
53
53
 
54
54
  ### Invoking authentication protected endpoints
55
55
  Once an authentication token is set, any protected endpoint can be invoked.
@@ -106,19 +106,26 @@ make test
106
106
  ```
107
107
 
108
108
  ### Without Docker
109
+ Installing on ``Linux`` or ``macOS`` systems.
109
110
 
110
- #### 1. Install missing dependencies
111
- This command will install all modules listed as dependencies in [package.json](package.json). **A working Java Runtime Environment is also required.** Please, check out the installation instructions for your operating system.
111
+ #### 1. Navigate to the project directory!
112
+ ```shell
113
+ cd packages/sdks/javascript/
114
+ ```
115
+
116
+ #### 2. Install missing dependencies
117
+ This command will install all modules listed as dependencies in [package.json](package.json). **A working Java Runtime Environment is also required.** Please, check out the installation instructions
118
+ for your operating system.
112
119
  ```
113
120
  npm install
114
121
  ```
115
122
 
116
- #### 2. Build SDK
123
+ #### 3. Build SDK
117
124
  ```
118
125
  npm run build
119
126
  ```
120
127
 
121
- #### 3. Run tests
128
+ #### 4. Run tests
122
129
  ```
123
130
  npm run test
124
131
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.44.0",
3
+ "version": "2.44.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },