ryuu-client 4.3.2 → 4.3.3

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 (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +26 -10
  3. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.3.3](https://github.com/DomoApps/domoapps-client/compare/v4.3.3-beta.0...v4.3.3) (2023-06-26)
6
+
7
+
8
+ ### Documentation
9
+
10
+ * updated license for compatibility ([4565077](https://github.com/DomoApps/domoapps-client/commit/4565077d476e53a7c3b7270da3d49e8493249be7))
11
+
12
+ ### [4.3.3-beta.0](https://github.com/DomoApps/domoapps-client/compare/v4.3.2...v4.3.3-beta.0) (2023-06-08)
13
+
14
+
15
+ ### Documentation
16
+
17
+ * update readme ([ea7ee24](https://github.com/DomoApps/domoapps-client/commit/ea7ee2469f1ac0861dc22bc679eb07bcc5f3f7f0))
18
+
5
19
  ### [4.3.2](https://github.com/DomoApps/domoapps-client/compare/v4.3.2-beta.4...v4.3.2) (2023-05-15)
6
20
 
7
21
 
package/README.md CHANGED
@@ -2,29 +2,45 @@
2
2
 
3
3
  The client (endpoint) repository used by Ryuu/Domo App Platform
4
4
 
5
+ [![npm version](https://img.shields.io/npm/v/ryuu-client.svg?style=flat-square)](https://www.npmjs.org/package/ryuu-client)
6
+ [![install size](https://img.shields.io/badge/dynamic/json?url=https://packagephobia.com/v2/api.json?p=ryuu-client&query=$.install.pretty&label=install%20size&style=flat-square)](https://packagephobia.com/result?p=ryuu-client)
7
+ [![npm downloads](https://img.shields.io/npm/dm/ryuu-client.svg?style=flat-square)](https://npm-stat.com/charts.html?package=ryuu-client)
8
+ [![Known Vulnerabilities](https://snyk.io/test/npm/ryuu-client/badge.svg)](https://snyk.io/test/npm/ryuu-client)
9
+
5
10
  See the [developer docs](https://developer.domo.com/docs/dev-studio/dev-studio-overview) for instructions on how to install and use this library (almost solely as a dependancy of Ryuu/Ryuu-Proxy), as well as more information about the complete Domo App Platform.
6
11
 
7
- ## Versioning this Library
12
+ ## Building
8
13
 
9
- This project utilizes [standard-version](https://github.com/conventional-changelog/standard-version).
14
+ To build ryuu-client, run
10
15
 
11
- - `npm run bump` - Version bumps determined automatically via commits
12
- - `npm run bumpBeta` || `npm run bump -- --prerelease beta` - 4.0.x-beta.0 (if no current beta) or 4.0.0-beta.x (if current beta exists)
16
+ ```bash
17
+ npm run build
18
+ ```
13
19
 
14
- ## Making Changes
20
+ All necessary files will be built/copied into the `lib` folder.
21
+
22
+ ## Contributing
15
23
 
16
24
  Recommended Workflow:
17
25
 
18
26
  1. Create new branch (named "DOMO-XXXXXX")
19
27
  2. Make Changes
20
28
  3. Commit Changes
21
- 4. Make pull request
22
- 5. Version changes and releases will be committed by package maintainers
29
+ 4. Test changes (if necessary, version a alpha/beta/tagged version, then release it)
30
+ 5. Make pull request
31
+ 6. After pull request is merged to master, bump version, then release it to npm
32
+
33
+ ## Versioning
23
34
 
24
- ### Release commands (alpha/beta commands also available)
35
+ This project utilizes [standard-version](https://github.com/conventional-changelog/standard-version).
36
+
37
+ - `npm run bump` - Version bumps determined automatically via commits
38
+ - `npm run bumpBeta` or `npm run bump -- --prerelease beta` - 4.0.x-beta.0 (if no current beta) or 4.0.0-beta.x (if current beta exists)
39
+
40
+ ### Releasing
41
+
42
+ Versions should be released on NPM and then updated in the ryuu-cli package.json
25
43
 
26
44
  - `npm run release`
27
45
  - `npm run releaseAlpha`
28
46
  - `npm run releaseBeta`
29
-
30
- [npm package](https://www.npmjs.com/package/ryuu-client)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ryuu-client",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "Node client for ryuu services",
5
5
  "author": "Domo",
6
6
  "main": "lib/domoapps-client.js",
@@ -9,6 +9,7 @@
9
9
  "lib/**/*",
10
10
  "license.doc"
11
11
  ],
12
+ "license": "SEE LICENSE IN LICENSE",
12
13
  "scripts": {
13
14
  "test": "echo \"Error: no test specified\" && exit 1",
14
15
  "copy": "cp \"package.json\" \"./dist/\"",