@allthings/sdk 7.1.0 → 7.2.0
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/README.md +11 -0
- package/dist/cli.js +1107 -27
- package/dist/lib.cjs.js +1107 -27
- package/dist/lib.esm.js +1107 -27
- package/dist/lib.umd.min.js +1 -1
- package/dist/src/rest/methods/idLookup.d.ts +2 -0
- package/package.json +46 -37
package/README.md
CHANGED
|
@@ -474,6 +474,17 @@ When you squash merge, GitHub takes the title of the PR for the squash-merge's c
|
|
|
474
474
|
By choosing a proper PR title e.g. `feat: my new feature` your merged PR will trigger a new release.
|
|
475
475
|
See semantic-releases [docs](https://github.com/semantic-release/semantic-release#how-does-it-work) for available prefixes.
|
|
476
476
|
|
|
477
|
+
### Development release
|
|
478
|
+
|
|
479
|
+
In some cases you need to release a new version of the SDK without merging a PR. It could be done manually by running the following command:
|
|
480
|
+
|
|
481
|
+
```sh
|
|
482
|
+
yarn build && yarn publish --new-version <latest version + 1>-dev.x --tag dev --access public
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
where `<latest version>` is a tag from https://www.npmjs.com/package/@allthings/sdk?activeTab=versions (could be retrieved by running `npm view @allthings/sdk version`) and `x` is a new number of development version
|
|
486
|
+
|
|
487
|
+
|
|
477
488
|
## Local tests
|
|
478
489
|
|
|
479
490
|
To run local tests, init the shell from devenv and use this command:
|