@globus/sdk 6.2.0-canary.11.766f7ca → 6.2.0-canary.12.8b74849
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 +17 -0
- package/dist/esm/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -85,3 +85,20 @@ The UMD distribution is provided for use in web applications and environments th
|
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
Currently, the UMD distribution only provides the default entrypoint for the package.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## Releases
|
|
91
|
+
The `@globus/sdk` package follows semantic versioning and is published to [npm](https://www.npmjs.com/package/@globus/sdk).
|
|
92
|
+
|
|
93
|
+
### Stable Releases
|
|
94
|
+
Stable versions are published to npm with the `latest` tag and can be installed with:
|
|
95
|
+
```sh
|
|
96
|
+
npm install @globus/sdk
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Canary Builds
|
|
100
|
+
Canary builds are automatically published from the `main` branch on every commit, allowing you to integrate the latest changes before they're included in a stable release. These pre-release versions are tagged with `canary` on npm and can be installed with:
|
|
101
|
+
```sh
|
|
102
|
+
npm install @globus/sdk@canary
|
|
103
|
+
```
|
|
104
|
+
Note: Canary builds are intended for testing and edge-development purposes. They may contain breaking changes or unstable features and are not commonly used in production environments.
|
package/dist/esm/package.json
CHANGED